Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: chrome/browser/chrome_content_browser_client.h

Issue 2025683003: First experimental implementation of the Clear-Site-Data header (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Many changes, most importantly synchronous deletion. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 23 matching lines...) Expand all
34 } 34 }
35 35
36 namespace user_prefs { 36 namespace user_prefs {
37 class PrefRegistrySyncable; 37 class PrefRegistrySyncable;
38 } 38 }
39 39
40 namespace version_info { 40 namespace version_info {
41 enum class Channel; 41 enum class Channel;
42 } 42 }
43 43
44 namespace url {
45 class Origin;
46 }
47
44 class ChromeContentBrowserClient : public content::ContentBrowserClient { 48 class ChromeContentBrowserClient : public content::ContentBrowserClient {
45 public: 49 public:
46 ChromeContentBrowserClient(); 50 ChromeContentBrowserClient();
47 ~ChromeContentBrowserClient() override; 51 ~ChromeContentBrowserClient() override;
48 52
49 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); 53 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
50 54
51 // Notification that the application locale has changed. This allows us to 55 // Notification that the application locale has changed. This allows us to
52 // update our I/O thread cache of this value. 56 // update our I/O thread cache of this value.
53 static void SetApplicationLocale(const std::string& locale); 57 static void SetApplicationLocale(const std::string& locale);
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 bool* no_javascript_access) override; 213 bool* no_javascript_access) override;
210 void ResourceDispatcherHostCreated() override; 214 void ResourceDispatcherHostCreated() override;
211 content::SpeechRecognitionManagerDelegate* 215 content::SpeechRecognitionManagerDelegate*
212 CreateSpeechRecognitionManagerDelegate() override; 216 CreateSpeechRecognitionManagerDelegate() override;
213 net::NetLog* GetNetLog() override; 217 net::NetLog* GetNetLog() override;
214 void OverrideWebkitPrefs(content::RenderViewHost* rvh, 218 void OverrideWebkitPrefs(content::RenderViewHost* rvh,
215 content::WebPreferences* prefs) override; 219 content::WebPreferences* prefs) override;
216 void BrowserURLHandlerCreated(content::BrowserURLHandler* handler) override; 220 void BrowserURLHandlerCreated(content::BrowserURLHandler* handler) override;
217 void ClearCache(content::RenderFrameHost* rfh) override; 221 void ClearCache(content::RenderFrameHost* rfh) override;
218 void ClearCookies(content::RenderFrameHost* rfh) override; 222 void ClearCookies(content::RenderFrameHost* rfh) override;
223 void ClearSiteData(content::BrowserContext* browser_context,
224 const url::Origin& origin,
225 bool remove_cookies,
226 bool remove_storage,
227 bool remove_cache,
228 const base::Closure& callback) override;
219 base::FilePath GetDefaultDownloadDirectory() override; 229 base::FilePath GetDefaultDownloadDirectory() override;
220 std::string GetDefaultDownloadName() override; 230 std::string GetDefaultDownloadName() override;
221 base::FilePath GetShaderDiskCacheDirectory() override; 231 base::FilePath GetShaderDiskCacheDirectory() override;
222 void DidCreatePpapiPlugin(content::BrowserPpapiHost* browser_host) override; 232 void DidCreatePpapiPlugin(content::BrowserPpapiHost* browser_host) override;
223 content::BrowserPpapiHost* GetExternalBrowserPpapiHost( 233 content::BrowserPpapiHost* GetExternalBrowserPpapiHost(
224 int plugin_process_id) override; 234 int plugin_process_id) override;
225 bool AllowPepperSocketAPI( 235 bool AllowPepperSocketAPI(
226 content::BrowserContext* browser_context, 236 content::BrowserContext* browser_context,
227 const GURL& url, 237 const GURL& url,
228 bool private_api, 238 bool private_api,
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 // Vector of additional ChromeContentBrowserClientParts. 354 // Vector of additional ChromeContentBrowserClientParts.
345 // Parts are deleted in the reverse order they are added. 355 // Parts are deleted in the reverse order they are added.
346 std::vector<ChromeContentBrowserClientParts*> extra_parts_; 356 std::vector<ChromeContentBrowserClientParts*> extra_parts_;
347 357
348 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; 358 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_;
349 359
350 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 360 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
351 }; 361 };
352 362
353 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 363 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | chrome/browser/chrome_content_browser_client.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698