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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
78 class FileSystemBackend; | 78 class FileSystemBackend; |
79 } | 79 } |
80 | 80 |
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 BrowserPluginGuestManagerDelegate; | |
jam
2014/05/02 22:24:47
undo
Fady Samuel
2014/05/03 00:16:59
Done.
| |
88 class BrowserPpapiHost; | 89 class BrowserPpapiHost; |
89 class BrowserURLHandler; | 90 class BrowserURLHandler; |
90 class DesktopNotificationDelegate; | 91 class DesktopNotificationDelegate; |
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; |
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
642 // Allows an embedder to provide its own ExternalVideoSurfaceContainer | 643 // Allows an embedder to provide its own ExternalVideoSurfaceContainer |
643 // implementation. Return NULL to disable external surface video. | 644 // implementation. Return NULL to disable external surface video. |
644 virtual ExternalVideoSurfaceContainer* | 645 virtual ExternalVideoSurfaceContainer* |
645 OverrideCreateExternalVideoSurfaceContainer(WebContents* web_contents); | 646 OverrideCreateExternalVideoSurfaceContainer(WebContents* web_contents); |
646 #endif | 647 #endif |
647 }; | 648 }; |
648 | 649 |
649 } // namespace content | 650 } // namespace content |
650 | 651 |
651 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 652 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |