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

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

Issue 11362268: Implement the ability to obliterate a storage partition from disk. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: source control is hard, let's go shopping! Created 8 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 OVERRIDE; 45 OVERRIDE;
46 virtual std::string GetStoragePartitionIdForSite( 46 virtual std::string GetStoragePartitionIdForSite(
47 content::BrowserContext* browser_context, 47 content::BrowserContext* browser_context,
48 const GURL& site) OVERRIDE; 48 const GURL& site) OVERRIDE;
49 virtual bool IsValidStoragePartitionId( 49 virtual bool IsValidStoragePartitionId(
50 content::BrowserContext* browser_context, 50 content::BrowserContext* browser_context,
51 const std::string& partition_id) OVERRIDE; 51 const std::string& partition_id) OVERRIDE;
52 virtual void GetStoragePartitionConfigForSite( 52 virtual void GetStoragePartitionConfigForSite(
53 content::BrowserContext* browser_context, 53 content::BrowserContext* browser_context,
54 const GURL& site, 54 const GURL& site,
55 bool can_be_default,
55 std::string* partition_domain, 56 std::string* partition_domain,
56 std::string* partition_name, 57 std::string* partition_name,
57 bool* in_memory) OVERRIDE; 58 bool* in_memory) OVERRIDE;
58 virtual content::WebContentsViewDelegate* GetWebContentsViewDelegate( 59 virtual content::WebContentsViewDelegate* GetWebContentsViewDelegate(
59 content::WebContents* web_contents) OVERRIDE; 60 content::WebContents* web_contents) OVERRIDE;
60 virtual void RenderViewHostCreated( 61 virtual void RenderViewHostCreated(
61 content::RenderViewHost* render_view_host) OVERRIDE; 62 content::RenderViewHost* render_view_host) OVERRIDE;
62 virtual void RenderProcessHostCreated( 63 virtual void RenderProcessHostCreated(
63 content::RenderProcessHost* host) OVERRIDE; 64 content::RenderProcessHost* host) OVERRIDE;
64 virtual void BrowserChildProcessHostCreated( 65 virtual void BrowserChildProcessHostCreated(
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 // Cached version of the locale so we can return the locale on the I/O 253 // Cached version of the locale so we can return the locale on the I/O
253 // thread. 254 // thread.
254 std::string io_thread_application_locale_; 255 std::string io_thread_application_locale_;
255 256
256 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 257 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
257 }; 258 };
258 259
259 } // namespace chrome 260 } // namespace chrome
260 261
261 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 262 #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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698