| 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 "content/public/common/console_message_level.h" | 13 #include "content/public/common/console_message_level.h" |
| 14 #include "content/public/renderer/render_view_observer.h" | 14 #include "content/public/renderer/render_view_observer.h" |
| 15 #include "content/public/renderer/render_view_observer_tracker.h" | 15 #include "content/public/renderer/render_view_observer_tracker.h" |
| 16 #include "extensions/common/view_type.h" | 16 #include "extensions/common/view_type.h" |
| 17 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLResponse.h" | 17 #include "third_party/WebKit/public/platform/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 ExtensionMsg_ExternalConnectionInfo; | 22 struct ExtensionMsg_ExternalConnectionInfo; |
| 23 struct WebApplicationInfo; | 23 struct WebApplicationInfo; |
| 24 | 24 |
| 25 namespace base { | 25 namespace base { |
| 26 class DictionaryValue; | 26 class DictionaryValue; |
| 27 class ListValue; | 27 class ListValue; |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 | 112 |
| 113 // Id number of browser window which RenderView is attached to. | 113 // Id number of browser window which RenderView is attached to. |
| 114 int browser_window_id_; | 114 int browser_window_id_; |
| 115 | 115 |
| 116 DISALLOW_COPY_AND_ASSIGN(ExtensionHelper); | 116 DISALLOW_COPY_AND_ASSIGN(ExtensionHelper); |
| 117 }; | 117 }; |
| 118 | 118 |
| 119 } // namespace extensions | 119 } // namespace extensions |
| 120 | 120 |
| 121 #endif // CHROME_RENDERER_EXTENSIONS_EXTENSION_HELPER_H_ | 121 #endif // CHROME_RENDERER_EXTENSIONS_EXTENSION_HELPER_H_ |
| OLD | NEW |