/external/chromium_org/chrome/browser/ui/cocoa/browser/ |
avatar_button_controller.h | 23 // avatar, or, when in Incognito, the spy dude. With multi-profiles, clicking 24 // will open the profile menu; in Incognito, clicking will do nothing.
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/_locales/en/ |
messages.json | 27 "message": "Setting incognito proxy settings failed. Sorry!", 28 "description": "Error message, displayed when failing to set incognito proxy settings."
|
/external/chromium_org/chrome/installer/linux/common/ |
desktop.template | 172 Name=New Incognito Window 181 Name[en_GB]=New Incognito window 185 Name[fi]=Uusi incognito-ikkuna 186 Name[fil]=Bagong Incognito window 193 Name[it]=Nuova finestra di navigazione in incognito 204 Name[pl]=Nowe okno incognito 207 Name[ro]=Fereastr? nou? incognito 221 Exec=/usr/bin/@@USR_BIN_SYMLINK_NAME@@ --incognito
|
/external/chromium_org/chrome/browser/ |
chrome_main_browsertest.cc | 90 // Run with --incognito switch and an URL specified. 99 // There should be one normal and one incognito window now. 120 // Create an incognito window. 136 // There should only be the incognito window open now. 140 // Run with just an URL specified, no --incognito switch. 151 // There should be one normal and one incognito window now.
|
/external/chromium_org/chrome/browser/extensions/api/declarative/ |
rules_cache_delegate.cc | 22 bool incognito) { 23 if (incognito) 24 return "declarative_rules.incognito." + event_name; 51 bool incognito) { 53 result += incognito ? ".incognito." : ".";
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/ |
popup.css | 25 div[role='main'].incognito { 140 .incognito section label, 141 .incognito section legend { 152 .incognito .active section label, 153 .incognito .active section legend, 154 .incognito form > fieldset > label {
|
/external/chromium_org/extensions/browser/ |
process_map.h | 20 // - In spanning mode, extensions share a single process between all incognito 22 // - In split mode, extensions have separate processes in incognito windows. 51 // incognito window open and the extension is "split mode". It is *not safe* 54 // care about incognito version of this extension (or vice versa if you're in 55 // an incognito profile) then use 60 // incognito/normal twin. If you care about this, use
|
/external/chromium_org/chrome/browser/extensions/ |
menu_manager.cc | 52 const char kIncognitoKey[] = "incognito"; 200 value->SetBoolean(kIncognitoKey, id_.incognito); 222 bool incognito = false; local 223 if (!value.GetBoolean(kIncognitoKey, &incognito)) 225 Id id(incognito, extension_id); 269 scoped_ptr<Id> parent_id(new Id(incognito, extension_id)); 372 parent->incognito() != child->incognito() || 409 child->incognito() != new_parent->incognito() || [all...] |
extension_protocols_unittest.cc | 36 manifest.SetString("incognito", incognito_split_mode ? "split" : "spanning"); 109 void SetProtocolHandler(bool incognito) { 114 CreateExtensionProtocolHandler(incognito, extension_info_map_.get())); 140 // Tests that making a chrome-extension request in an incognito context is 142 // in incognito, and it's either a non-main-frame request or a split-mode 145 // Register an incognito extension protocol handler. 224 // Register a non-incognito extension protocol handler. 261 // Register a non-incognito extension protocol handler. 299 // Register a non-incognito extension protocol handler.
|
extension_system.h | 49 // and incognito Profiles, except as called out in comments. 135 // ExtensionSystemImpl, a BrowserContextKeyedService with separate incognito 137 // but with a shared instance for incognito) keeps the common services. 176 // shared between normal and incognito profiles. 208 // The services that are shared between normal and incognito profiles.
|
chrome_extension_function.cc | 57 // is true, we will also search browsers in the incognito version of this 58 // profile. Note that the profile may already be incognito, in which case 59 // we will search the incognito version only, regardless of the value of
|
/external/chromium_org/chrome/browser/resources/extensions/ |
extension_list.js | 20 * indicating whether the incognito warning is showing. This persists 132 // The 'allow in incognito' checkbox. 133 var incognito = node.querySelector('.incognito-control input'); 134 incognito.disabled = !extension.incognitoCanBeToggled; 135 incognito.checked = extension.enabledIncognito; 136 if (!incognito.disabled) { 137 incognito.addEventListener('change', function(e) { 283 (view.incognito ? 294 view.incognito [all...] |
/external/chromium_org/chrome/test/functional/ |
prefs_ui.py | 53 incognito=False): 60 incognito: Incognito list displayed on exceptions settings page. 65 self.assertTrue(page.GetExceptions(incognito).has_key(hostname_pattern), 68 self.assertEqual(behavior, page.GetExceptions(incognito)[hostname_pattern], 70 % (page.GetExceptions(incognito)[hostname_pattern], 191 """Verify initial line entry is displayed in Incognito UI.""" 192 self.RunCommand(pyauto.IDC_NEW_INCOGNITO_WINDOW) # Display incognito list. 195 self.assertEqual(1, len(page.GetExceptions(incognito=True))) 198 """Verify exceptions entry is correctly displayed in the incognito UI."" [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_pref_value_map_unittest.cc | 37 std::string GetValue(const char * key, bool incognito) const { 38 const Value *value = epvm_.GetEffectivePrefValue(key, incognito, NULL); 218 // Override incognito value. 223 // Override non-incognito value. 286 int val_ext1_incognito_; // pref value of extension 1 incognito 288 int val_ext2_incognito_; // pref value of extension 2 incognito 290 int effective_value_incognito_; // desired winner incognito 338 // ext1 regular is set to "val1", ext2 incognito is set to "val4" 339 // --> the winning regular value is "val1", the winning incognito
|
extensions_ui.h | 36 bool incognito) 38 render_view_id(render_view_id), incognito(incognito) {} 42 bool incognito; member in struct:ExtensionPage 182 // Used to show confirmation UI for uninstalling extensions in incognito mode.
|
extension_event_router.h | 26 // sub-profile (incognito to original profile, or vice versa). 54 // profiles unless the extension has permission (e.g. incognito tab update -> 55 // normal profile only works if extension is allowed incognito access). If
|
/external/chromium/chrome/common/extensions/docs/static/ |
experimental.proxy.html | 174 Chrome allows using different proxy settings for regular windows and incognito 177 regular windows <b>(R)</b> and proxy settings for incognito windows <b>(I)</b>. 183 and incognito windows.</li> 184 <li>If only <b>(I)</b> is set, these settings are effective for only incognito 188 used for regular and incognito windows.</li> 206 apply to regular and incognito windows. 221 {'value': config, 'incognito': false}, 241 {'value': config, 'incognito': false}, 251 {'incognito': false},
|
/external/chromium_org/chrome/browser/extensions/api/preference/ |
preference_api.h | 74 bool incognito); 77 // preference. If |from_incognito| is not NULL, looks at incognito preferences 79 // coming from the incognito preferences, false if it is coming from the 129 bool incognito) OVERRIDE; 131 // Clears incognito session-only content settings for all extensions.
|
/external/chromium_org/chrome/browser/ui/autofill/ |
account_chooser_model_unittest.cc | 95 // In incognito, use local data regardless of the pref. 99 scoped_ptr<TestingProfile> incognito = builder.Build(); local 100 incognito->SetOriginalProfile(profile()); 103 incognito->GetPrefs()->SetBoolean( 107 incognito.get(),
|
/external/chromium_org/chrome/browser/extensions/error_console/ |
error_console.h | 93 // Remove all errors which happened while incognito; we have to do this once 94 // the incognito profile is destroyed. 124 // incognito fellow).
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
sync_extension_helper.h | 56 // Enables the extension with the given name to run in incognito mode 59 // Disables the extension with the given name from running in incognito mode 62 // Returns true iff the extension is enabled in incognito mode on |profile|.
|
/external/chromium_org/chrome/browser/ui/bookmarks/ |
bookmark_ui_utils_unittest.cc | 62 // This tests that |nodes| contains an disabled-in-incognito URL. 70 // This tests that |nodes| contains an URL that can be opened in incognito 88 // Add disabled-in-incognito url.
|
/external/chromium_org/chrome/browser/ui/views/bookmarks/ |
bookmark_context_menu_controller_win.cc | 69 // and no new incognito window option on an incognito chrome window. 88 // We need to handle the open in new window and open in incognito window
|
/external/chromium_org/chrome/browser/ui/views/frame/ |
browser_non_client_frame_view_ash.h | 88 // Layout the incognito icon. 106 // activation state and incognito mode. 110 // state and incognito mode.
|
/external/chromium_org/components/browser_context_keyed_service/ |
browser_context_keyed_base_factory.cc | 51 // Safe default for the Incognito mode: no service. 66 // With incognito contexts, we just never register since incognito contexts
|