HomeSort by relevance Sort by last modified time
    Searched defs:incognito (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/chrome/common/extensions/docs/examples/api/contentSettings/
popup.js 5 var incognito; variable
19 'scope': (incognito ? 'incognito_session_only' : 'regular')
26 incognito = current.incognito;
36 'incognito': incognito
  /external/chromium_org/chrome/browser/prefs/
incognito_mode_prefs_unittest.cc 25 IncognitoModePrefs::Availability incognito; local
26 EXPECT_TRUE(IncognitoModePrefs::IntToAvailability(0, &incognito));
27 EXPECT_EQ(IncognitoModePrefs::ENABLED, incognito);
28 EXPECT_TRUE(IncognitoModePrefs::IntToAvailability(1, &incognito));
29 EXPECT_EQ(IncognitoModePrefs::DISABLED, incognito);
30 EXPECT_TRUE(IncognitoModePrefs::IntToAvailability(2, &incognito));
31 EXPECT_EQ(IncognitoModePrefs::FORCED, incognito);
33 EXPECT_FALSE(IncognitoModePrefs::IntToAvailability(10, &incognito));
34 EXPECT_EQ(IncognitoModePrefs::ENABLED, incognito);
35 EXPECT_FALSE(IncognitoModePrefs::IntToAvailability(-1, &incognito));
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/content_settings/
content_settings_store_unittest.cc 46 void(const std::string& extension_id, bool incognito));
54 bool incognito) {
56 store->GetRuleIterator(content_type, resource_identifier, incognito));
67 bool incognito,
71 store->GetRuleIterator(content_type, resource_identifier, incognito));
193 bool incognito = false; local
196 store(), CONTENT_SETTINGS_TYPE_COOKIES, std::string(), incognito, &rules); local
213 store(), CONTENT_SETTINGS_TYPE_COOKIES, std::string(), incognito, &rules); local
231 store(), CONTENT_SETTINGS_TYPE_COOKIES, std::string(), incognito, &rules); local
241 store(), CONTENT_SETTINGS_TYPE_COOKIES, std::string(), incognito, &rules) local
249 store(), CONTENT_SETTINGS_TYPE_COOKIES, std::string(), incognito, &rules); local
    [all...]
content_settings_api.cc 71 bool incognito = false; local
75 incognito = true;
78 if (incognito) {
79 // We don't check incognito permissions here, as an extension should be
82 // Incognito profiles can't access regular mode ever, they only exist in
125 bool incognito = false; local
126 if (params->details.incognito.get())
127 incognito = *params->details.incognito;
128 if (incognito && !include_incognito())
213 bool incognito = false; local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_renderer_data.h 47 bool incognito; member in struct:TabRendererData
  /external/chromium_org/content/plugin/
plugin_channel.h 50 bool incognito() { return incognito_; } function in class:content::PluginChannel
95 bool incognito_; // True if the renderer is in incognito mode.
  /external/chromium_org/chrome/browser/extensions/
event_router_forwarder_unittest.cc 135 Profile* incognito = profile1_->GetOffTheRecordProfile(); local
138 EXPECT_CALL(*event_router.get(), CallEventRouter(incognito, _, _, _, _))
185 Profile* incognito = profile1_->GetOffTheRecordProfile(); local
190 EXPECT_CALL(*event_router.get(), CallEventRouter(incognito, _, _, _, _))
201 Profile* incognito = profile1_->GetOffTheRecordProfile(); local
207 CallEventRouter(incognito, "", kEventName, incognito, url));
210 DispatchEventToRenderers(event_router.get(), kEventName, incognito, true,
230 Profile* incognito = profile1_->GetOffTheRecordProfile(); local
235 EXPECT_CALL(*event_router.get(), CallEventRouter(incognito, _, _, _, _)
    [all...]
menu_manager.h 72 Id(bool incognito, const ExtensionKey& extension_key);
79 bool incognito; member in struct:extensions::MenuItem::Id
163 bool incognito() const { return id_.incognito; } function in class:extensions::MenuItem
363 // Removes all "incognito" "split" mode context items.
menu_manager_unittest.cc 64 MenuItem* CreateTestItem(Extension* extension, bool incognito = false) {
68 MenuItem::Id id(incognito, key);
214 bool incognito = true; local
238 value.SetBoolean("incognito", incognito);
253 EXPECT_EQ(incognito, item->incognito());
739 // with incognito 'true'.
748 // with incognito 'false'.
766 // Remove all context menu items with incognito true
    [all...]
menu_manager.cc 55 const char kIncognitoKey[] = "incognito";
203 value->SetBoolean(kIncognitoKey, id_.incognito);
225 bool incognito = false; local
226 if (!value.GetBoolean(kIncognitoKey, &incognito))
228 Id id(incognito, MenuItem::ExtensionKey(extension_id));
273 new Id(incognito, MenuItem::ExtensionKey(extension_id)));
378 parent->incognito() != child->incognito() ||
415 child->incognito() != new_parent->incognito() ||
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
account_chooser_model_unittest.cc 96 // In incognito, use local data regardless of the pref.
98 Profile* incognito = profile()->GetOffTheRecordProfile(); local
101 incognito->GetPrefs()->SetBoolean(
105 delegate(), incognito, false, metric_logger()); local
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_context_menu_controller_unittest.cc 241 // Tests the enabled state of open incognito.
243 TestingProfile* incognito = local
246 incognito->CreateBookmarkModel(true);
247 BookmarkModel* model = BookmarkModelFactory::GetForProfile(incognito);
254 NULL, NULL, NULL, incognito, NULL, nodes[0]->parent(), nodes);
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_context_menu_unittest.cc 147 // Tests open all on a folder with a couple of bookmarks in incognito window.
269 // Tests the enabled state of open incognito.
273 Profile* incognito = profile_->GetOffTheRecordProfile(); local
275 NULL, NULL, incognito, NULL, nodes[0]->parent(), nodes, false);
  /external/chromium_org/components/content_settings/core/common/
content_settings.h 33 bool incognito);
39 bool incognito; member in struct:ContentSettingPatternSource
  /external/chromium_org/ppapi/proxy/
plugin_dispatcher.h 107 bool incognito);
168 bool incognito() const { return incognito_; } function in class:ppapi::proxy::PluginDispatcher
203 // incognito mode.
  /external/chromium_org/chrome/browser/content_settings/
content_settings_browsertest.cc 62 // Check the cookie for the given URL in an incognito window.
66 Browser* incognito = CreateIncognitoBrowser(); local
67 ASSERT_TRUE(content::GetCookies(incognito->profile(), url).empty());
68 ui_test_utils::NavigateToURL(incognito, url);
70 !content::GetCookies(incognito->profile(), url).empty());
72 // Ensure incognito cookies don't leak to regular profile.
75 // Ensure cookies get wiped after last incognito window closes.
78 content::Source<Browser>(incognito));
80 chrome::CloseWindow(incognito);
91 incognito = CreateIncognitoBrowser()
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/extensions/
extension_settings_handler.h 59 bool incognito,
64 bool incognito; member in struct:extensions::ExtensionPage
263 // Used to show confirmation UI for uninstalling extensions in incognito mode.
  /external/chromium_org/chrome/browser/
jumplist_win.cc 109 // Create an IShellLink object which launches Chrome in incognito mode, and
113 scoped_refptr<ShellLinkItem> incognito = CreateShellLink(); local
114 incognito->GetCommandLine()->AppendSwitch(switches::kIncognito);
118 incognito->set_title(incognito_title);
119 incognito->set_icon(chrome_path.value(), 0);
120 items.push_back(incognito);
448 // Check if incognito windows (or normal windows) are disabled by policy.
  /external/chromium_org/chrome/browser/notifications/
notification_browsertest.cc 611 // Verify that allow/deny origin preferences are not saved in incognito.
612 Browser* incognito = CreateIncognitoBrowser(); local
613 ui_test_utils::NavigateToURL(incognito, GetTestPageURL());
614 ASSERT_TRUE(RequestPermissionAndWait(incognito));
615 PerformActionOnInfoBar(incognito, DENY, 0, 0);
616 CloseBrowserWindow(incognito);
618 incognito = CreateIncognitoBrowser();
619 ui_test_utils::NavigateToURL(incognito, GetTestPageURL());
620 ASSERT_TRUE(RequestPermissionAndWait(incognito));
621 PerformActionOnInfoBar(incognito, ALLOW, 0, 0)
    [all...]
  /external/chromium_org/chrome/browser/ui/
browser_close_browsertest.cc 55 } incognito; member in struct:BrowserCloseTest::DownloadsCloseCheckCase::__anon9662
66 } incognito; member in struct:BrowserCloseTest::DownloadsCloseCheckCase::__anon9665
70 enum { REGULAR = 0, INCOGNITO = 1 } window_to_probe;
314 browser_a_incognito, check_case.profile_a.incognito.downloads);
318 browser_b_incognito, check_case.profile_b.incognito.downloads);
327 check_case.profile_a.incognito.windows,
329 check_case.profile_b.incognito.windows,
343 DownloadsCloseCheckCase::INCOGNITO));
347 DownloadsCloseCheckCase::INCOGNITO)))
395 // Second level nesting is {regular, incognito
    [all...]
  /external/chromium_org/chrome/test/base/
in_process_browser_test.cc 321 // Create a new browser with using the incognito profile.
322 Browser* incognito = new Browser( local
325 AddBlankTabAndShow(incognito);
326 return incognito;
  /external/chromium_org/extensions/browser/
extension_pref_value_map.cc 18 // Whether the extension has access to the incognito profile.
25 // Persistent extension controlled preferences for the incognito profile,
28 // Session only extension controlled preferences for the incognito profile.
29 // These preferences are deleted when the incognito profile is destroyed.
72 bool incognito) const {
79 if (incognito && !ext->second->incognito_enabled)
83 GetEffectivePrefValueController(pref_key, incognito, NULL);
113 bool incognito = (from_incognito != NULL); local
115 GetEffectivePrefValueController(pref_key, incognito, from_incognito);
245 bool incognito,
    [all...]
  /external/chromium_org/chrome/browser/download/
save_page_browsertest.cc 586 // Open an Incognito window.
587 Browser* incognito = CreateIncognitoBrowser(); // Waits. local
588 ASSERT_TRUE(incognito);
592 BrowserContext::GetDownloadManager(incognito->profile()));
597 NavigateToURLWithDisposition(incognito, url, NEW_FOREGROUND_TAB,
606 content::BrowserContext::GetDownloadManager(incognito->profile()),
608 ASSERT_TRUE(GetCurrentTab(incognito)->SavePage(
612 ASSERT_TRUE(VerifySavePackageExpectations(incognito, url));
615 EXPECT_TRUE(incognito->window()->IsDownloadShelfVisible());
  /external/chromium_org/chrome/browser/extensions/api/preference/
preference_api.cc 327 bool incognito = (pref_service != profile_->GetPrefs()); local
352 if (incognito) {
362 incognito,
421 bool incognito) {
427 extension_id, pref_key, incognito);
485 bool incognito) {
486 if (incognito) {
565 bool incognito = false; local
568 &incognito));
570 // Check incognito access
640 bool incognito = local
723 bool incognito = local
    [all...]
  /external/chromium_org/chrome/browser/net/
dns_probe_browsertest.cc 976 Browser* incognito = CreateIncognitoBrowser(); local
    [all...]

Completed in 583 milliseconds

1 2