Searched refs:privateBrowsingEnabled (Results 1 - 25 of 57) sorted by relevance

123

/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/mac/
H A DWKPagePrivateMac.cpp45 bool privateBrowsingEnabled = webPageProxy->pageGroup()->preferences()->privateBrowsingEnabled(); local
47 return webPageProxy->process()->context()->isURLKnownHSTSHost(toImpl(url)->string(), privateBrowsingEnabled);
/macosx-10.9.5/WebKit2-7537.78.2/NetworkProcess/mac/
H A DRemoteNetworkingContext.h35 static PassRefPtr<RemoteNetworkingContext> create(bool needsSiteSpecificQuirks, bool localFileContentSniffingEnabled, bool privateBrowsingEnabled, bool shouldClearReferrerOnHTTPSToHTTPRedirect) argument
37 return adoptRef(new RemoteNetworkingContext(needsSiteSpecificQuirks, localFileContentSniffingEnabled, privateBrowsingEnabled, shouldClearReferrerOnHTTPSToHTTPRedirect));
50 RemoteNetworkingContext(bool needsSiteSpecificQuirks, bool localFileContentSniffingEnabled, bool privateBrowsingEnabled, bool m_shouldClearReferrerOnHTTPSToHTTPRedirect);
H A DRemoteNetworkingContext.mm51 RemoteNetworkingContext::RemoteNetworkingContext(bool needsSiteSpecificQuirks, bool localFileContentSniffingEnabled, bool privateBrowsingEnabled, bool shouldClearReferrerOnHTTPSToHTTPRedirect)
54 , m_privateBrowsingEnabled(privateBrowsingEnabled)
/macosx-10.9.5/WebKit2-7537.78.2/NetworkProcess/
H A DNetworkConnectionToWebProcess.h79 void startDownload(bool privateBrowsingEnabled, uint64_t downloadID, const WebCore::ResourceRequest&);
82 void cookiesForDOM(bool privateBrowsingEnabled, const WebCore::KURL& firstParty, const WebCore::KURL&, String& result);
83 void setCookiesFromDOM(bool privateBrowsingEnabled, const WebCore::KURL& firstParty, const WebCore::KURL&, const String&);
84 void cookiesEnabled(bool privateBrowsingEnabled, const WebCore::KURL& firstParty, const WebCore::KURL&, bool& result);
85 void cookieRequestHeaderFieldValue(bool privateBrowsingEnabled, const WebCore::KURL& firstParty, const WebCore::KURL&, String& result);
86 void getRawCookies(bool privateBrowsingEnabled, const WebCore::KURL& firstParty, const WebCore::KURL&, Vector<WebCore::Cookie>&);
87 void deleteCookie(bool privateBrowsingEnabled, const WebCore::KURL&, const String& cookieName);
H A DNetworkConnectionToWebProcess.cpp150 static NetworkStorageSession& storageSession(bool privateBrowsingEnabled) argument
152 if (privateBrowsingEnabled) {
163 void NetworkConnectionToWebProcess::startDownload(bool privateBrowsingEnabled, uint64_t downloadID, const ResourceRequest& request) argument
185 void NetworkConnectionToWebProcess::cookiesForDOM(bool privateBrowsingEnabled, const KURL& firstParty, const KURL& url, String& result) argument
187 result = WebCore::cookiesForDOM(storageSession(privateBrowsingEnabled), firstParty, url);
190 void NetworkConnectionToWebProcess::setCookiesFromDOM(bool privateBrowsingEnabled, const KURL& firstParty, const KURL& url, const String& cookieString) argument
192 WebCore::setCookiesFromDOM(storageSession(privateBrowsingEnabled), firstParty, url, cookieString);
195 void NetworkConnectionToWebProcess::cookiesEnabled(bool privateBrowsingEnabled, const KURL& firstParty, const KURL& url, bool& result) argument
197 result = WebCore::cookiesEnabled(storageSession(privateBrowsingEnabled), firstParty, url);
200 void NetworkConnectionToWebProcess::cookieRequestHeaderFieldValue(bool privateBrowsingEnabled, cons argument
205 getRawCookies(bool privateBrowsingEnabled, const KURL& firstParty, const KURL& url, Vector<Cookie>& result) argument
210 deleteCookie(bool privateBrowsingEnabled, const KURL& url, const String& cookieName) argument
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Network/
H A DNetworkProcessCreationParameters.h49 bool privateBrowsingEnabled; member in struct:WebKit::NetworkProcessCreationParameters
H A DNetworkProcessCreationParameters.cpp43 encoder << privateBrowsingEnabled; local
64 if (!decoder.decode(result.privateBrowsingEnabled))
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebPreferences.cpp64 if (didAddPageGroup && privateBrowsingEnabled()) {
79 if (privateBrowsingEnabled()) {
H A DWebIconDatabase.cpp301 void WebIconDatabase::setPrivateBrowsingEnabled(bool privateBrowsingEnabled) argument
304 m_iconDatabaseImpl->setPrivateBrowsingEnabled(privateBrowsingEnabled);
H A DWebContext.cpp376 parameters.privateBrowsingEnabled = WebPreferences::anyPageGroupsAreUsingPrivateBrowsing();
428 void WebContext::setAnyPageGroupMightHavePrivateBrowsingEnabled(bool privateBrowsingEnabled) argument
430 m_iconDatabase->setPrivateBrowsingEnabled(privateBrowsingEnabled);
434 if (privateBrowsingEnabled)
441 if (privateBrowsingEnabled)
/macosx-10.9.5/WebKit-7537.78.2/win/WebCoreSupport/
H A DWebFrameNetworkingContext.cpp105 if (frame() && frame()->settings() && frame()->settings()->privateBrowsingEnabled())
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-WebKit/PyObjCTest/
H A Dtest_webpreferences.py44 self.failUnlessResultIsBOOL(WebPreferences.privateBrowsingEnabled)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-WebKit/PyObjCTest/
H A Dtest_webpreferences.py44 self.assertResultIsBOOL(WebPreferences.privateBrowsingEnabled)
/macosx-10.9.5/WebKit-7537.78.2/mac/WebCoreSupport/
H A DWebFrameNetworkingContext.mm96 if (frame() && frame()->settings() && frame()->settings()->privateBrowsingEnabled())
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebCoreSupport/mac/
H A DWebFrameNetworkingContext.mm120 if (frame() && frame()->settings() && frame()->settings()->privateBrowsingEnabled())
/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DDatabaseContext.cpp209 if (!document->page() || (document->page()->settings()->privateBrowsingEnabled() && !SchemeRegistry::allowsDatabaseAccessInPrivateBrowsing(document->securityOrigin()->protocol())))
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebPreferences.h358 @method privateBrowsingEnabled
360 - (BOOL)privateBrowsingEnabled;
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/qt/
H A Dqwebpreferences_p.h41 Q_PROPERTY(bool privateBrowsingEnabled READ privateBrowsingEnabled WRITE setPrivateBrowsingEnabled NOTIFY privateBrowsingEnabledChanged FINAL)
85 bool privateBrowsingEnabled() const;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/Network/
H A DWebResourceLoadScheduler.cpp106 bool privateBrowsingEnabled = resourceLoader->frameLoader()->frame()->settings()->privateBrowsingEnabled(); local
125 loadParameters.inPrivateBrowsingMode = privateBrowsingEnabled;
/macosx-10.9.5/WebCore-7537.78.1/storage/
H A DStorage.cpp161 if (!m_frame->page()->settings()->privateBrowsingEnabled())
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DSettings.cpp400 void Settings::setPrivateBrowsingEnabled(bool privateBrowsingEnabled) argument
402 if (m_privateBrowsingEnabled == privateBrowsingEnabled)
405 m_privateBrowsingEnabled = privateBrowsingEnabled;
H A DPageConsole.cpp171 if (page->settings()->privateBrowsingEnabled())
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DHistoryController.cpp366 bool needPrivacy = !settings || settings->privateBrowsingEnabled();
404 bool needPrivacy = !settings || settings->privateBrowsingEnabled();
453 bool needPrivacy = !settings || settings->privateBrowsingEnabled();
546 if (!settings || settings->privateBrowsingEnabled())
875 if (!settings || settings->privateBrowsingEnabled())
896 if (!settings || settings->privateBrowsingEnabled())
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/Hosted/
H A DWebKitPluginHost.defs244 privateBrowsingEnabled :boolean_t);
/macosx-10.9.5/WebCore-7537.78.1/loader/icon/
H A DIconController.cpp206 if (iconDatabase().supportsAsynchronousMode() && m_frame->page()->settings()->privateBrowsingEnabled())

Completed in 138 milliseconds

123