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 EXTENSIONS_BROWSER_GUEST_VIEW_MIME_HANDLER_VIEW_MIME_HANDLER_VIEW_GUEST_
H_ | 5 #ifndef EXTENSIONS_BROWSER_GUEST_VIEW_MIME_HANDLER_VIEW_MIME_HANDLER_VIEW_GUEST_
H_ |
6 #define EXTENSIONS_BROWSER_GUEST_VIEW_MIME_HANDLER_VIEW_MIME_HANDLER_VIEW_GUEST_
H_ | 6 #define EXTENSIONS_BROWSER_GUEST_VIEW_MIME_HANDLER_VIEW_MIME_HANDLER_VIEW_GUEST_
H_ |
7 | 7 |
| 8 #include "base/macros.h" |
8 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
9 #include "components/guest_view/browser/guest_view.h" | 10 #include "components/guest_view/browser/guest_view.h" |
10 | 11 |
11 namespace content { | 12 namespace content { |
12 class WebContents; | 13 class WebContents; |
13 struct ContextMenuParams; | 14 struct ContextMenuParams; |
14 struct StreamInfo; | 15 struct StreamInfo; |
15 } // namespace content | 16 } // namespace content |
16 | 17 |
17 namespace extensions { | 18 namespace extensions { |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 scoped_ptr<MimeHandlerViewGuestDelegate> delegate_; | 97 scoped_ptr<MimeHandlerViewGuestDelegate> delegate_; |
97 scoped_ptr<StreamContainer> stream_; | 98 scoped_ptr<StreamContainer> stream_; |
98 std::string view_id_; | 99 std::string view_id_; |
99 | 100 |
100 DISALLOW_COPY_AND_ASSIGN(MimeHandlerViewGuest); | 101 DISALLOW_COPY_AND_ASSIGN(MimeHandlerViewGuest); |
101 }; | 102 }; |
102 | 103 |
103 } // namespace extensions | 104 } // namespace extensions |
104 | 105 |
105 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_MIME_HANDLER_VIEW_MIME_HANDLER_VIEW_GUE
ST_H_ | 106 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_MIME_HANDLER_VIEW_MIME_HANDLER_VIEW_GUE
ST_H_ |
OLD | NEW |