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

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

Issue 911153002: Moved the TraceUploader to chrome/ and abstracted it for alternative new upload destinations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 10 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
« 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 content::WebContents* web_contents) override; 246 content::WebContents* web_contents) override;
247 void GetAdditionalAllowedSchemesForFileSystem( 247 void GetAdditionalAllowedSchemesForFileSystem(
248 std::vector<std::string>* additional_schemes) override; 248 std::vector<std::string>* additional_schemes) override;
249 void GetURLRequestAutoMountHandlers( 249 void GetURLRequestAutoMountHandlers(
250 std::vector<storage::URLRequestAutoMountHandler>* handlers) override; 250 std::vector<storage::URLRequestAutoMountHandler>* handlers) override;
251 void GetAdditionalFileSystemBackends( 251 void GetAdditionalFileSystemBackends(
252 content::BrowserContext* browser_context, 252 content::BrowserContext* browser_context,
253 const base::FilePath& storage_partition_path, 253 const base::FilePath& storage_partition_path,
254 ScopedVector<storage::FileSystemBackend>* additional_backends) override; 254 ScopedVector<storage::FileSystemBackend>* additional_backends) override;
255 content::DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; 255 content::DevToolsManagerDelegate* GetDevToolsManagerDelegate() override;
256 content::TracingDelegate* GetTracingDelegate() override;
256 bool IsPluginAllowedToCallRequestOSFileHandle( 257 bool IsPluginAllowedToCallRequestOSFileHandle(
257 content::BrowserContext* browser_context, 258 content::BrowserContext* browser_context,
258 const GURL& url) override; 259 const GURL& url) override;
259 bool IsPluginAllowedToUseDevChannelAPIs( 260 bool IsPluginAllowedToUseDevChannelAPIs(
260 content::BrowserContext* browser_context, 261 content::BrowserContext* browser_context,
261 const GURL& url) override; 262 const GURL& url) override;
262 net::CookieStore* OverrideCookieStoreForRenderProcess( 263 net::CookieStore* OverrideCookieStoreForRenderProcess(
263 int render_process_id) override; 264 int render_process_id) override;
264 void OverridePageVisibilityState( 265 void OverridePageVisibilityState(
265 content::RenderFrameHost* render_frame_host, 266 content::RenderFrameHost* render_frame_host,
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 std::vector<ChromeContentBrowserClientParts*> extra_parts_; 341 std::vector<ChromeContentBrowserClientParts*> extra_parts_;
341 342
342 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; 343 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_;
343 344
344 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 345 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
345 }; 346 };
346 347
347 } // namespace chrome 348 } // namespace chrome
348 349
349 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 350 #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