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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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_ |
OLD | NEW |