Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(277)

Side by Side Diff: content/public/browser/content_browser_client.h

Issue 258373002: Towards moving guest management to chrome: Introduce GuestViewManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed John's comments Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698