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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 virtual bool IsPluginAllowedToUseDevChannelAPIs( | 275 virtual bool IsPluginAllowedToUseDevChannelAPIs( |
276 content::BrowserContext* browser_context, | 276 content::BrowserContext* browser_context, |
277 const GURL& url) OVERRIDE; | 277 const GURL& url) OVERRIDE; |
278 virtual net::CookieStore* OverrideCookieStoreForRenderProcess( | 278 virtual net::CookieStore* OverrideCookieStoreForRenderProcess( |
279 int render_process_id) OVERRIDE; | 279 int render_process_id) OVERRIDE; |
280 | 280 |
281 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 281 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
282 virtual void GetAdditionalMappedFilesForChildProcess( | 282 virtual void GetAdditionalMappedFilesForChildProcess( |
283 const base::CommandLine& command_line, | 283 const base::CommandLine& command_line, |
284 int child_process_id, | 284 int child_process_id, |
285 std::vector<content::FileDescriptorInfo>* mappings) OVERRIDE; | 285 content::FileDescriptorInfo* mappings) OVERRIDE; |
286 #endif | 286 #endif |
287 #if defined(OS_WIN) | 287 #if defined(OS_WIN) |
288 virtual const wchar_t* GetResourceDllName() OVERRIDE; | 288 virtual const wchar_t* GetResourceDllName() OVERRIDE; |
289 virtual void PreSpawnRenderer(sandbox::TargetPolicy* policy, | 289 virtual void PreSpawnRenderer(sandbox::TargetPolicy* policy, |
290 bool* success) OVERRIDE; | 290 bool* success) OVERRIDE; |
291 #endif | 291 #endif |
292 virtual bool CheckMediaAccessPermission( | 292 virtual bool CheckMediaAccessPermission( |
293 content::BrowserContext* browser_context, | 293 content::BrowserContext* browser_context, |
294 const GURL& security_origin, | 294 const GURL& security_origin, |
295 content::MediaStreamType type) OVERRIDE; | 295 content::MediaStreamType type) OVERRIDE; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 349 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
350 | 350 |
351 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 351 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
352 | 352 |
353 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 353 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
354 }; | 354 }; |
355 | 355 |
356 } // namespace chrome | 356 } // namespace chrome |
357 | 357 |
358 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 358 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |