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

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

Issue 2473003002: content: Cleanup class/struct forward declarations (Closed)
Patch Set: Another missing forward declaration Created 4 years, 1 month 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
« no previous file with comments | « content/public/browser/browser_context.h ('k') | content/public/browser/browser_ppapi_host.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_BROWSER_PLUGIN_GUEST_DELEGATE_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_
6 #define CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ 6 #define CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_
7 7
8 #include "base/callback_forward.h" 8 #include "base/callback_forward.h"
9 #include "base/process/kill.h" 9 #include "base/process/kill.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "content/public/browser/web_contents.h" 11 #include "content/public/browser/web_contents.h"
12 12
13 namespace base {
14 class DictionaryValue;
15 } // namespace base
16
17 namespace gfx { 13 namespace gfx {
18 class Size; 14 class Size;
19 } // namespace gfx 15 } // namespace gfx
20 16
21 namespace content { 17 namespace content {
22 18
23 class GuestHost; 19 class GuestHost;
24 20
25 // Objects implement this interface to get notified about changes in the guest 21 // Objects implement this interface to get notified about changes in the guest
26 // WebContents and to provide necessary functionality. 22 // WebContents and to provide necessary functionality.
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 91
96 // TODO(ekaramad): A short workaround to force some types of guests to use 92 // TODO(ekaramad): A short workaround to force some types of guests to use
97 // a BrowserPlugin even when we are using cross process frames for guests. It 93 // a BrowserPlugin even when we are using cross process frames for guests. It
98 // should be removed after resolving https://crbug.com/642826). 94 // should be removed after resolving https://crbug.com/642826).
99 virtual bool CanUseCrossProcessFrames(); 95 virtual bool CanUseCrossProcessFrames();
100 }; 96 };
101 97
102 } // namespace content 98 } // namespace content
103 99
104 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ 100 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_
OLDNEW
« no previous file with comments | « content/public/browser/browser_context.h ('k') | content/public/browser/browser_ppapi_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698