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 CHROME_RENDERER_EXTENSIONS_EXTENSION_HELPER_H_ | 5 #ifndef CHROME_RENDERER_EXTENSIONS_EXTENSION_HELPER_H_ |
6 #define CHROME_RENDERER_EXTENSIONS_EXTENSION_HELPER_H_ | 6 #define CHROME_RENDERER_EXTENSIONS_EXTENSION_HELPER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/memory/linked_ptr.h" | 11 #include "base/memory/linked_ptr.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "chrome/common/view_type.h" | 13 #include "chrome/common/view_type.h" |
14 #include "content/public/common/console_message_level.h" | 14 #include "content/public/common/console_message_level.h" |
15 #include "content/public/renderer/render_view_observer.h" | 15 #include "content/public/renderer/render_view_observer.h" |
16 #include "content/public/renderer/render_view_observer_tracker.h" | 16 #include "content/public/renderer/render_view_observer_tracker.h" |
17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLRespon
se.h" | 17 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLResponse.h" |
18 | 18 |
19 class GURL; | 19 class GURL; |
20 class SkBitmap; | 20 class SkBitmap; |
21 struct ExtensionMsg_ExecuteCode_Params; | 21 struct ExtensionMsg_ExecuteCode_Params; |
22 struct WebApplicationInfo; | 22 struct WebApplicationInfo; |
23 | 23 |
24 namespace base { | 24 namespace base { |
25 class ListValue; | 25 class ListValue; |
26 } | 26 } |
27 | 27 |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 | 142 |
143 // Id number of browser window which RenderView is attached to. | 143 // Id number of browser window which RenderView is attached to. |
144 int browser_window_id_; | 144 int browser_window_id_; |
145 | 145 |
146 DISALLOW_COPY_AND_ASSIGN(ExtensionHelper); | 146 DISALLOW_COPY_AND_ASSIGN(ExtensionHelper); |
147 }; | 147 }; |
148 | 148 |
149 } // namespace extensions | 149 } // namespace extensions |
150 | 150 |
151 #endif // CHROME_RENDERER_EXTENSIONS_EXTENSION_HELPER_H_ | 151 #endif // CHROME_RENDERER_EXTENSIONS_EXTENSION_HELPER_H_ |
OLD | NEW |