/external/chromium_org/chrome/browser/extensions/api/omnibox/ |
omnibox_api_browsertest.cc | 192 // Tests that we get suggestions from and send input to the incognito context 193 // of an incognito split mode extension. 203 // Open an incognito window and wait for the incognito extension process to 217 // Test that we get the incognito-specific suggestions. 233 EXPECT_EQ(ASCIIToUTF16("keyword suggestion3 incognito"), 237 // Test that our input is sent to the incognito context. The test will do a 238 // text comparison and succeed only if "command incognito" is sent to the 239 // incognito context. 243 AutocompleteInput(ASCIIToUTF16("keyword command incognito"), [all...] |
/external/chromium_org/chrome/common/extensions/api/ |
content_settings.json | 47 "description": "Where to clear the setting (default: regular). One of<br><var>regular</var>: setting for regular profile (which is inherited by the incognito profile if not overridden elsewhere),<br><var>incognito_session_only</var>: setting for incognito profile that can only be set during an incognito session and is deleted when the incognito session ends (overrides regular settings)." 82 "incognito": { 85 "description": "Whether to check the content settings for an incognito session. (default false)" 138 "description": "Where to set the setting (default: regular). One of<br><var>regular</var>: setting for regular profile (which is inherited by the incognito profile if not overridden elsewhere),<br><var>incognito_session_only</var>: setting for incognito profile that can only be set during an incognito session and is deleted when the incognito session ends (overrides regular settings). [all...] |
/external/chromium_org/tools/json_schema_compiler/test/ |
content_settings.json | 43 "description": "Where to set the setting (default: regular). One of<br><var>regular</var>: setting for regular profile (which is inherited by the incognito profile if not overridden elsewhere),<br><var>incognito_session_only</var>: setting for incognito profile that can only be set during an incognito session and is deleted when the incognito session ends (overrides regular settings)." 78 "incognito": { 81 "description": "Whether to check the content settings for an incognito session. (default false)" 134 "description": "Where to clear the setting (default: regular). One of<br><var>regular</var>: setting for regular profile (which is inherited by the incognito profile if not overridden elsewhere),<br><var>incognito_session_only</var>: setting for incognito profile that can only be set during an incognito session and is deleted when the incognito session ends (overrides regular settings). [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/ |
proxy_form_controller.js | 71 INCOGNITO: 2 125 * @type {regular: ?ProxyConfig, incognito: ?ProxyConfig} 128 config_: {regular: null, incognito: null}, 131 * Do we have access to incognito mode? 341 * we wait until we have confirmed incognito access levels before 344 * @param {boolean} state The state of incognito access. 349 chrome.proxy.settings.get({incognito: false}, 352 chrome.proxy.settings.get({incognito: true}, 376 * Handles the response from 'proxy.settings.get' for incognito 389 this.config_.incognito = c.value [all...] |
/external/chromium_org/chrome/browser/extensions/activity_log/ |
activity_actions.h | 92 // refer to incognito pages. 94 void set_page_incognito(bool incognito) { page_incognito_ = incognito; } 96 void set_arg_incognito(bool incognito) { arg_incognito_ = incognito; } 104 // the URL is marked as incognito, then the string is prefixed with 105 // kIncognitoUrl ("<incognito>").
|
/external/chromium_org/chrome/browser/extensions/api/preference/ |
preference_api.cc | 259 bool incognito = (pref_service != profile_->GetPrefs()); local 284 if (incognito) { 294 incognito, 353 bool incognito) { 359 extension_id, pref_key, incognito); 459 // Set incognito extension controlled prefs. 490 bool incognito) { 491 if (incognito) { 558 bool incognito = false; local 561 &incognito)); 631 bool incognito = local 712 bool incognito = local [all...] |
/external/chromium_org/chrome/browser/content_settings/ |
content_settings_default_provider.h | 34 bool incognito); 41 bool incognito) const OVERRIDE; 77 // Whether this settings map is for an Incognito session.
|
content_settings_provider.h | 32 // provider. If |incognito| is true, the iterator returns only the content 33 // settings which are applicable to the incognito mode and differ from the 42 bool incognito) const = 0;
|
/external/chromium_org/chrome/browser/extensions/api/tabs/ |
tabs_test.cc | 68 EXPECT_FALSE(utils::GetBoolean(result.get(), "incognito")); 112 // Incognito. 135 EXPECT_TRUE(utils::GetBoolean(result.get(), "incognito")); 254 // Force Incognito mode. 257 // Run without an explicit "incognito" param. 271 // ... and it is incognito. 272 EXPECT_TRUE(utils::GetBoolean(result.get(), "incognito")); 274 // Now try creating a window from incognito window. 276 // Run without an explicit "incognito" param. 288 // ... and it is incognito [all...] |
/external/chromium_org/chrome/browser/extensions/ |
extension_functional_browsertest.cc | 63 // Verify that the extension is enabled and allowed in incognito 87 // Allow extension in incognito mode and verify. 94 // Disallow extension in incognito mode and verify.
|
/external/chromium_org/chrome/browser/sessions/ |
session_service_factory.h | 19 // profile supports a session service (it isn't incognito), and the session 24 // This returns NULL if the profile is incognito. Callers should always check 29 // doesn't exist. This returns NULL if the profile is incognito or if session
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
extensions_helper.h | 58 // Enables the extension for the given index in incognito mode on |profile|. 61 // Disables the extension for the given index in incognito mode on |profile|. 64 // Returns true if the extension with index |index| is enabled in incognito
|
/external/chromium_org/chrome/test/functional/ |
extensions.py | 55 """Clicks on 'Allow in incognito' checkbox for specified extension. 60 disallowed in incognito. 63 '//*[@id="%s"]//*[@class="incognito-control"]//*[@type="checkbox"]' % 192 Checks that the installed extension is enabled and not allowed in incognito. 208 msg='Extension was allowed in incognito on installation.') 288 """Tests allowing and disallowing an extension in incognito mode.""" 291 # Allow in incognito. 297 # Check extension now allowed in incognito. 301 msg='Extension did not get allowed in incognito.') 303 # Disallow in incognito [all...] |
/external/chromium_org/third_party/launchpad_translations/ |
generated_resources_ia.xtb | 15 <translation id="1682548588986054654">Nove fenestra de incognito</translation> 19 <translation id="2251809247798634662">Nove fenestra de incognito</translation> 24 <translation id="3319048459796106952">Nove fenestra de &incognito</translation>
|
/external/chromium/chrome/browser/ |
background_contents_service_factory.h | 33 // Use a separate background contents service for incognito.
|
/external/chromium/chrome/browser/extensions/ |
extension_pref_store.h | 21 // Constructs an ExtensionPrefStore for a regular or an incognito profile.
|
/external/chromium/chrome/browser/notifications/ |
desktop_notification_service_factory.h | 35 // Use a separate desktop notification service for incognito.
|
/external/chromium/chrome/browser/profiles/ |
profile_keyed_service_factory.h | 55 // with incognito profiles per subclass instructions with 71 // By default, if we are asked for a service with an Incognito profile, we 72 // pass back NULL. To redirect to the Incognito's original profile or to 73 // create another instance, even for Incognito windows, override one of the
|
/external/chromium/chrome/browser/ui/cocoa/applescript/ |
constants_applescript.h | 28 // To indicate a window in incognito mode.
|
/external/chromium/chrome/browser/ui/cocoa/applescript/examples/ |
window_operations.applescript | 13 -- Checks if a window is in |normal mode| or |incognito mode|
|
/external/chromium/chrome/browser/ui/find_bar/ |
find_bar_state.h | 31 // incognito and has an empty prepopulate text, falls back to the
|
/external/chromium/chrome/browser/ui/views/ |
theme_background.h | 23 // image. It takes care of active/inactive state, incognito state and
|
/external/chromium/chrome/browser/ui/webui/ |
html_dialog_tab_contents_delegate.cc | 14 // Incognito profiles are not long-lived, so we always want to store a 15 // non-incognito profile. 17 // TODO(akalin): Should we make it so that we have a default incognito 19 // when all incognito browsers close.
|
/external/chromium_org/ash/system/user/ |
login_status.h | 18 LOGGED_IN_GUEST, // A guest is logged in (i.e. incognito)
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/ |
ChromiumApplication.java | 29 * incognito mode.
|