mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2022, Andrew Kaster <akaster@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <AK/DeprecatedString.h>
 | 
						|
 | 
						|
namespace Web::HTML {
 | 
						|
 | 
						|
class NavigatorIDMixin {
 | 
						|
public:
 | 
						|
    // WARNING: Any information in this API that varies from user to user can be used to profile the user. In fact, if
 | 
						|
    // enough such information is available, a user can actually be uniquely identified. For this reason, user agent
 | 
						|
    // implementers are strongly urged to include as little information in this API as possible.
 | 
						|
 | 
						|
    // https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-appcodename
 | 
						|
    DeprecatedString app_code_name() const { return "Mozilla"sv; }
 | 
						|
 | 
						|
    // https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-appcodename
 | 
						|
    DeprecatedString app_name() const { return "Netscape"sv; }
 | 
						|
 | 
						|
    // https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-appversion
 | 
						|
    DeprecatedString app_version() const;
 | 
						|
 | 
						|
    // https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-platform
 | 
						|
    DeprecatedString platform() const;
 | 
						|
 | 
						|
    // https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-product
 | 
						|
    DeprecatedString product() const { return "Gecko"sv; }
 | 
						|
 | 
						|
    // https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-productsub
 | 
						|
    DeprecatedString product_sub() const { return "20030107"sv; } // Compatibility mode "Chrome"
 | 
						|
 | 
						|
    // https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-useragent
 | 
						|
    DeprecatedString user_agent() const;
 | 
						|
 | 
						|
    // https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-vendor
 | 
						|
    DeprecatedString vendor() const { return "Google Inc."sv; } // Compatibility mode "Chrome"
 | 
						|
 | 
						|
    // https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-vendorsub
 | 
						|
    DeprecatedString vendor_sub() const { return ""sv; }
 | 
						|
 | 
						|
    // NOTE: If the navigator compatibility mode is Gecko, then the user agent must also support the following partial interface:
 | 
						|
    //       bool taint_enabled()
 | 
						|
    //       DeprecatedString oscpu()
 | 
						|
};
 | 
						|
 | 
						|
}
 |