Searched refs:incognito (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium/chrome/browser/extensions/
H A Dextension_pref_value_map.h17 // extension pref values (incognito and regular) are stored herein and
27 // - The effective incognito extension pref value is determined by the incognito
43 // .inc = incognito value
69 // incognito and to regular ExtensionPrefStores.
73 bool incognito,
80 bool incognito);
89 bool incognito) const;
99 bool incognito) const;
122 bool incognito,
[all...]
H A Dextension_pref_value_map.cc33 bool incognito,
35 PrefValueMap* prefs = GetExtensionPrefValueMap(ext_id, incognito);
43 bool incognito) {
44 PrefValueMap* prefs = GetExtensionPrefValueMap(ext_id, incognito);
52 bool incognito) const {
60 GetEffectivePrefValueController(pref_key, incognito, NULL);
70 bool incognito) const {
72 GetEffectivePrefValueController(pref_key, incognito, NULL);
115 bool incognito) {
118 return incognito
31 SetExtensionPref(const std::string& ext_id, const std::string& key, bool incognito, Value* value) argument
41 RemoveExtensionPref(const std::string& ext_id, const std::string& key, bool incognito) argument
113 GetExtensionPrefValueMap( const std::string& ext_id, bool incognito) argument
145 GetEffectivePrefValue( const std::string& key, bool incognito, bool* from_incognito) const argument
164 GetEffectivePrefValueController( const std::string& key, bool incognito, bool* from_incognito) const argument
[all...]
H A Dextension_preference_api.cc36 const char kIncognito[] = "incognito";
44 "You do not have permission to access incognito preferences.";
90 bool incognito) {
91 PrefService* prefs = incognito ? profile->GetOffTheRecordPrefs()
101 if (ep->DoesExtensionControlPref(extension_id, browser_pref, incognito))
104 if (ep->CanExtensionControlPref(extension_id, browser_pref, incognito))
228 bool incognito = (pref_service != profile_->GetPrefs()); local
246 if (incognito) {
263 (!incognito || extension_service->CanCrossIncognito(*it))) {
265 GetLevelOfControl(profile_, extension_id, browser_pref, incognito);
86 GetLevelOfControl( Profile* profile, const std::string& extension_id, const std::string& browser_pref, bool incognito) argument
294 bool incognito = false; local
347 bool incognito = false; local
380 incognito, local
393 bool incognito = false; local
410 prefs->RemoveExtensionControlledPref(extension_id(), browser_pref, incognito); local
[all...]
H A Dextension_event_router_forwarder_unittest.cc60 TestingProfile* incognito = new TestingProfile(); local
61 incognito->set_incognito(true);
62 base->SetOffTheRecordProfile(incognito);
63 return incognito;
93 Profile* incognito = CreateIncognitoProfile(profile1_); local
98 CallExtensionEventRouter(incognito, _, _, _, _, _)).Times(0);
151 Profile* incognito = CreateIncognitoProfile(profile1_); local
158 CallExtensionEventRouter(incognito, _, _, _, _, _)).Times(0);
170 Profile* incognito = CreateIncognitoProfile(profile1_); local
177 incognito, "", kEventNam
204 Profile* incognito = CreateIncognitoProfile(profile1_); local
[all...]
H A Dextensions_ui.h36 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.
35 ExtensionPage(const GURL& url, int render_process_id, int render_view_id, bool incognito) argument
H A Dextension_prefs.h195 // Returns true if the user enabled this extension to be loaded in incognito
305 bool incognito,
310 bool incognito);
316 bool incognito);
322 bool incognito);
325 // for |pref_key| *and* it is specific to incognito mode.
H A Dextension_webstore_private_browsertest.cc133 void RunLoginTestImpl(bool incognito, argument
154 if (incognito) {
H A Dextension_prefs.cc71 // A preference that, if true, will allow this extension to run in incognito
73 const char kPrefIncognitoEnabled[] = "incognito";
1471 bool incognito,
1482 if (!incognito) {
1492 extension_id, pref_key, incognito, value);
1498 bool incognito) {
1503 if (!incognito) {
1513 extension_id, pref_key, incognito);
1518 bool incognito) {
1525 incognito);
1469 SetExtensionControlledPref(const std::string& extension_id, const std::string& pref_key, bool incognito, Value* value) argument
1495 RemoveExtensionControlledPref( const std::string& extension_id, const std::string& pref_key, bool incognito) argument
1516 CanExtensionControlPref(const std::string& extension_id, const std::string& pref_key, bool incognito) argument
1528 DoesExtensionControlPref(const std::string& extension_id, const std::string& pref_key, bool incognito) argument
[all...]
H A Dextension_pref_value_map_unittest.cc37 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
H A Dextension_tabs_module.cc452 bool incognito = false; local
455 &incognito));
461 if (incognito)
513 // Don't expose incognito windows if the extension isn't allowed.
719 // We can't load extension URLs into incognito windows unless the extension
H A Dextensions_ui.cc402 // Flipping the incognito bit will generate unload/load notifications for the
738 view_value->SetBoolean("incognito", iter->incognito);
760 // Repeat for the incognito process, if applicable.
/external/chromium/chrome/browser/ui/views/tabs/
H A Dtab_renderer_data.cc11 incognito(false),
30 incognito == data.incognito &&
H A Dtab_renderer_data.h47 bool incognito; member in struct:TabRendererData
H A Dbrowser_tab_strip_controller.cc405 data->incognito = contents->profile()->IsOffTheRecord();
H A Dtab.cc455 tab_id = data().incognito ? IDR_THEME_TAB_BACKGROUND_INCOGNITO :
/external/chromium/chrome/browser/resources/shared/js/cr/
H A Dlink_controller.js101 * Opens a URL in a new tab, window or incognito window.
110 * Opens URLs in new tab, window or incognito mode.
130 var incognito = kind == LinkKind.INCOGNITO;
131 if (kind == LinkKind.WINDOW || incognito) {
134 incognito: incognito
/external/chromium/chrome/browser/ui/webui/options/
H A Dextension_settings_handler.h36 bool incognito)
40 incognito(incognito) {}
44 bool incognito; member in struct:ExtensionPage
238 // Used to show confirmation UI for uninstalling extensions in incognito mode.
35 ExtensionPage(const GURL& url, int render_process_id, int render_view_id, bool incognito) argument
/external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/
H A Dproxy_form_controller.js123 * @type {regular: ?ProxyConfig, incognito: ?ProxyConfig}
126 config_: {regular: null, incognito: null},
129 * Do we have access to incognito mode?
339 * we wait until we have confirmed incognito access levels before
342 * @param {boolean} state The state of incognito access.
347 chrome.experimental.proxy.settings.get({incognito: false},
350 chrome.experimental.proxy.settings.get({incognito: true},
373 * Handles the response from 'proxy.settings.get' for incognito settings.
385 this.config_.incognito = c.value;
424 // Case 3: "Flip to incognito mod
[all...]
/external/chromium/chrome/browser/download/
H A Ddownload_browsertest.cc905 Browser* incognito = CreateIncognitoBrowser(); // Waits. local
906 ASSERT_TRUE(incognito);
911 CreateAndSetDownloadsDirectory(incognito);
914 // Since |incognito| is a separate browser, we have to set it up explicitly.
915 incognito->profile()->GetPrefs()->SetBoolean(prefs::kPromptForDownload,
917 DownloadAndWait(incognito, url, EXPECT_NO_SELECT_DIALOG);
923 bool is_shelf_visible = IsDownloadUIVisible(incognito);
927 incognito->CloseWindow();
933 Source<Browser>(incognito));
/external/chromium/chrome/browser/ui/gtk/tabs/
H A Dtab_renderer_gtk.h263 incognito(false),
276 bool incognito; member in struct:TabRendererGtk::TabData
H A Dtab_renderer_gtk.cc293 data_.incognito = contents->profile()->IsOffTheRecord();
392 if (!data_.incognito) {
900 int tab_id = data_.incognito ?
/external/chromium/chrome/browser/
H A Djumplist_win.cc358 // Create an IShellLink object which launches Chrome in incognito mode, and
361 scoped_refptr<ShellLinkItem> incognito(new ShellLinkItem);
362 incognito->SetArguments(
367 incognito->SetTitle(incognito_title);
368 incognito->SetIcon(chrome_path, 0, false);
369 AddShellLink(collection, chrome_path, chrome_switches, incognito);
/external/chromium/chrome/browser/ui/
H A Dbrowser_navigator_browsertest.cc215 // need a different profile, and creating a popup window with an incognito
228 // incognito window.
233 // 2. the incognito popup we created originally
234 // 3. the new incognito tabbed browser that was created by Navigate().
387 // opens a new incognito window if no existing incognito window is present.
393 // Navigate() should have opened a new toplevel incognito window.
403 // the new incognito window.
410 // reuses an existing incognito window when possible.
419 // Navigate() should have opened a new tab in the existing incognito windo
547 Browser* incognito = local
[all...]
/external/chromium/chrome/common/extensions/docs/examples/extensions/fx/
H A Dbg.js380 if (window.incognito) {
/external/chromium/chrome/browser/ui/gtk/
H A Dbrowser_window_gtk.cc591 bool incognito = browser()->profile()->IsOffTheRecord(); local
594 image_name = incognito ? IDR_THEME_FRAME_INCOGNITO : IDR_THEME_FRAME;
596 image_name = incognito ? IDR_THEME_FRAME_INCOGNITO_INACTIVE :

Completed in 359 milliseconds

12