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

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

Issue 183803023: clean up partition check in url_data_manager_backend.cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments addressed Created 6 years, 9 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 | Annotate | Revision Log
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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 content::WebContents* embedder_web_contents, 72 content::WebContents* embedder_web_contents,
73 const base::DictionaryValue& extra_params) OVERRIDE; 73 const base::DictionaryValue& extra_params) OVERRIDE;
74 virtual void RenderProcessWillLaunch( 74 virtual void RenderProcessWillLaunch(
75 content::RenderProcessHost* host) OVERRIDE; 75 content::RenderProcessHost* host) OVERRIDE;
76 virtual bool ShouldUseProcessPerSite(content::BrowserContext* browser_context, 76 virtual bool ShouldUseProcessPerSite(content::BrowserContext* browser_context,
77 const GURL& effective_url) OVERRIDE; 77 const GURL& effective_url) OVERRIDE;
78 virtual GURL GetEffectiveURL(content::BrowserContext* browser_context, 78 virtual GURL GetEffectiveURL(content::BrowserContext* browser_context,
79 const GURL& url) OVERRIDE; 79 const GURL& url) OVERRIDE;
80 virtual void GetAdditionalWebUISchemes( 80 virtual void GetAdditionalWebUISchemes(
81 std::vector<std::string>* additional_schemes) OVERRIDE; 81 std::vector<std::string>* additional_schemes) OVERRIDE;
82 virtual void GetAdditionalWebUIHostsToIgnoreParititionCheck(
83 std::vector<std::string>* hosts) OVERRIDE;
82 virtual net::URLRequestContextGetter* CreateRequestContext( 84 virtual net::URLRequestContextGetter* CreateRequestContext(
83 content::BrowserContext* browser_context, 85 content::BrowserContext* browser_context,
84 content::ProtocolHandlerMap* protocol_handlers, 86 content::ProtocolHandlerMap* protocol_handlers,
85 content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE; 87 content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE;
86 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( 88 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
87 content::BrowserContext* browser_context, 89 content::BrowserContext* browser_context,
88 const base::FilePath& partition_path, 90 const base::FilePath& partition_path,
89 bool in_memory, 91 bool in_memory,
90 content::ProtocolHandlerMap* protocol_handlers, 92 content::ProtocolHandlerMap* protocol_handlers,
91 content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE; 93 content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE;
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 permissions_policy_delegate_; 298 permissions_policy_delegate_;
297 299
298 friend class DisableWebRtcEncryptionFlagTest; 300 friend class DisableWebRtcEncryptionFlagTest;
299 301
300 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 302 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
301 }; 303 };
302 304
303 } // namespace chrome 305 } // namespace chrome
304 306
305 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 307 #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') | content/browser/webui/url_data_manager_backend.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698