| 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 CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 namespace content { | 81 namespace content { |
| 82 | 82 |
| 83 class AccessTokenStore; | 83 class AccessTokenStore; |
| 84 class BrowserChildProcessHost; | 84 class BrowserChildProcessHost; |
| 85 class BrowserContext; | 85 class BrowserContext; |
| 86 class BrowserMainParts; | 86 class BrowserMainParts; |
| 87 class BrowserPluginGuestDelegate; | 87 class BrowserPluginGuestDelegate; |
| 88 class BrowserPpapiHost; | 88 class BrowserPpapiHost; |
| 89 class BrowserURLHandler; | 89 class BrowserURLHandler; |
| 90 class DesktopNotificationDelegate; | 90 class DesktopNotificationDelegate; |
| 91 class DevToolsManagerDelegate; |
| 91 class ExternalVideoSurfaceContainer; | 92 class ExternalVideoSurfaceContainer; |
| 92 class LocationProvider; | 93 class LocationProvider; |
| 93 class MediaObserver; | 94 class MediaObserver; |
| 94 class QuotaPermissionContext; | 95 class QuotaPermissionContext; |
| 95 class RenderFrameHost; | 96 class RenderFrameHost; |
| 96 class RenderProcessHost; | 97 class RenderProcessHost; |
| 97 class RenderViewHost; | 98 class RenderViewHost; |
| 98 class ResourceContext; | 99 class ResourceContext; |
| 99 class SiteInstance; | 100 class SiteInstance; |
| 100 class SpeechRecognitionManagerDelegate; | 101 class SpeechRecognitionManagerDelegate; |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 627 // This is called on the IO thread. | 628 // This is called on the IO thread. |
| 628 virtual net::CookieStore* OverrideCookieStoreForRenderProcess( | 629 virtual net::CookieStore* OverrideCookieStoreForRenderProcess( |
| 629 int render_process_id_); | 630 int render_process_id_); |
| 630 | 631 |
| 631 #if defined(VIDEO_HOLE) | 632 #if defined(VIDEO_HOLE) |
| 632 // Allows an embedder to provide its own ExternalVideoSurfaceContainer | 633 // Allows an embedder to provide its own ExternalVideoSurfaceContainer |
| 633 // implementation. Return NULL to disable external surface video. | 634 // implementation. Return NULL to disable external surface video. |
| 634 virtual ExternalVideoSurfaceContainer* | 635 virtual ExternalVideoSurfaceContainer* |
| 635 OverrideCreateExternalVideoSurfaceContainer(WebContents* web_contents); | 636 OverrideCreateExternalVideoSurfaceContainer(WebContents* web_contents); |
| 636 #endif | 637 #endif |
| 638 |
| 639 // Creates a new DevToolsManagerDelegate. The caller owns the returned value. |
| 640 // It's valid to return NULL. |
| 641 virtual DevToolsManagerDelegate* GetDevToolsManagerDelegate(); |
| 637 }; | 642 }; |
| 638 | 643 |
| 639 } // namespace content | 644 } // namespace content |
| 640 | 645 |
| 641 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 646 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |