OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_GUEST_VIEW_BROWSER_GUEST_VIEW_MANAGER_H_ | 5 #ifndef COMPONENTS_GUEST_VIEW_BROWSER_GUEST_VIEW_MANAGER_H_ |
6 #define COMPONENTS_GUEST_VIEW_BROWSER_GUEST_VIEW_MANAGER_H_ | 6 #define COMPONENTS_GUEST_VIEW_BROWSER_GUEST_VIEW_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <memory> | 9 #include <memory> |
10 #include <set> | 10 #include <set> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/bind.h" | 13 #include "base/bind.h" |
14 #include "base/lazy_instance.h" | 14 #include "base/lazy_instance.h" |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
17 #include "content/public/browser/browser_plugin_guest_manager.h" | 17 #include "content/public/browser/browser_plugin_guest_manager.h" |
18 #include "content/public/browser/site_instance.h" | 18 #include "content/public/browser/site_instance.h" |
19 #include "content/public/browser/web_contents.h" | 19 #include "content/public/browser/web_contents.h" |
20 | 20 |
21 class GURL; | 21 class GURL; |
22 | 22 |
| 23 namespace base { |
| 24 class DictionaryValue; |
| 25 } |
| 26 |
23 namespace content { | 27 namespace content { |
24 class BrowserContext; | 28 class BrowserContext; |
25 class WebContents; | 29 class WebContents; |
26 } // namespace content | 30 } // namespace content |
27 | 31 |
28 namespace guest_view { | 32 namespace guest_view { |
29 | 33 |
30 class GuestViewBase; | 34 class GuestViewBase; |
31 class GuestViewManagerDelegate; | 35 class GuestViewManagerDelegate; |
32 class GuestViewManagerFactory; | 36 class GuestViewManagerFactory; |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 // call into this GuestViewManager after it has been destroyed. | 274 // call into this GuestViewManager after it has been destroyed. |
271 base::WeakPtrFactory<GuestViewManager> weak_ptr_factory_; | 275 base::WeakPtrFactory<GuestViewManager> weak_ptr_factory_; |
272 | 276 |
273 private: | 277 private: |
274 DISALLOW_COPY_AND_ASSIGN(GuestViewManager); | 278 DISALLOW_COPY_AND_ASSIGN(GuestViewManager); |
275 }; | 279 }; |
276 | 280 |
277 } // namespace guest_view | 281 } // namespace guest_view |
278 | 282 |
279 #endif // COMPONENTS_GUEST_VIEW_BROWSER_GUEST_VIEW_MANAGER_H_ | 283 #endif // COMPONENTS_GUEST_VIEW_BROWSER_GUEST_VIEW_MANAGER_H_ |
OLD | NEW |