| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 bool IsPluginAllowedToCallRequestOSFileHandle( | 254 bool IsPluginAllowedToCallRequestOSFileHandle( |
| 255 content::BrowserContext* browser_context, | 255 content::BrowserContext* browser_context, |
| 256 const GURL& url) override; | 256 const GURL& url) override; |
| 257 bool IsPluginAllowedToUseDevChannelAPIs( | 257 bool IsPluginAllowedToUseDevChannelAPIs( |
| 258 content::BrowserContext* browser_context, | 258 content::BrowserContext* browser_context, |
| 259 const GURL& url) override; | 259 const GURL& url) override; |
| 260 net::CookieStore* OverrideCookieStoreForRenderProcess( | 260 net::CookieStore* OverrideCookieStoreForRenderProcess( |
| 261 int render_process_id) override; | 261 int render_process_id) override; |
| 262 | 262 |
| 263 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 263 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 264 virtual void GetAdditionalMappedFilesForChildProcess( | 264 void GetAdditionalMappedFilesForChildProcess( |
| 265 const base::CommandLine& command_line, | 265 const base::CommandLine& command_line, |
| 266 int child_process_id, | 266 int child_process_id, |
| 267 content::FileDescriptorInfo* mappings) override; | 267 content::FileDescriptorInfo* mappings) override; |
| 268 #endif | 268 #endif |
| 269 #if defined(OS_WIN) | 269 #if defined(OS_WIN) |
| 270 virtual const wchar_t* GetResourceDllName() override; | 270 virtual const wchar_t* GetResourceDllName() override; |
| 271 virtual void PreSpawnRenderer(sandbox::TargetPolicy* policy, | 271 virtual void PreSpawnRenderer(sandbox::TargetPolicy* policy, |
| 272 bool* success) override; | 272 bool* success) override; |
| 273 #endif | 273 #endif |
| 274 bool CheckMediaAccessPermission(content::BrowserContext* browser_context, | 274 bool CheckMediaAccessPermission(content::BrowserContext* browser_context, |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 330 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 331 | 331 |
| 332 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 332 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 333 | 333 |
| 334 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 334 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 335 }; | 335 }; |
| 336 | 336 |
| 337 } // namespace chrome | 337 } // namespace chrome |
| 338 | 338 |
| 339 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 339 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |