OLD | NEW |
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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 content::WebContents* web_contents) override; | 247 content::WebContents* web_contents) override; |
248 void GetAdditionalAllowedSchemesForFileSystem( | 248 void GetAdditionalAllowedSchemesForFileSystem( |
249 std::vector<std::string>* additional_schemes) override; | 249 std::vector<std::string>* additional_schemes) override; |
250 void GetURLRequestAutoMountHandlers( | 250 void GetURLRequestAutoMountHandlers( |
251 std::vector<storage::URLRequestAutoMountHandler>* handlers) override; | 251 std::vector<storage::URLRequestAutoMountHandler>* handlers) override; |
252 void GetAdditionalFileSystemBackends( | 252 void GetAdditionalFileSystemBackends( |
253 content::BrowserContext* browser_context, | 253 content::BrowserContext* browser_context, |
254 const base::FilePath& storage_partition_path, | 254 const base::FilePath& storage_partition_path, |
255 ScopedVector<storage::FileSystemBackend>* additional_backends) override; | 255 ScopedVector<storage::FileSystemBackend>* additional_backends) override; |
256 content::DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; | 256 content::DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; |
| 257 content::TracingDelegate* GetTracingDelegate() override; |
257 bool IsPluginAllowedToCallRequestOSFileHandle( | 258 bool IsPluginAllowedToCallRequestOSFileHandle( |
258 content::BrowserContext* browser_context, | 259 content::BrowserContext* browser_context, |
259 const GURL& url) override; | 260 const GURL& url) override; |
260 bool IsPluginAllowedToUseDevChannelAPIs( | 261 bool IsPluginAllowedToUseDevChannelAPIs( |
261 content::BrowserContext* browser_context, | 262 content::BrowserContext* browser_context, |
262 const GURL& url) override; | 263 const GURL& url) override; |
263 net::CookieStore* OverrideCookieStoreForRenderProcess( | 264 net::CookieStore* OverrideCookieStoreForRenderProcess( |
264 int render_process_id) override; | 265 int render_process_id) override; |
265 void OverridePageVisibilityState( | 266 void OverridePageVisibilityState( |
266 content::RenderFrameHost* render_frame_host, | 267 content::RenderFrameHost* render_frame_host, |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 337 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
337 | 338 |
338 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 339 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
339 | 340 |
340 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 341 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
341 }; | 342 }; |
342 | 343 |
343 } // namespace chrome | 344 } // namespace chrome |
344 | 345 |
345 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 346 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |