| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/memory/linked_ptr.h" | 12 #include "base/memory/linked_ptr.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.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 "content/public/common/view_type.h" | 16 #include "content/public/common/view_type.h" |
| 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLResponse.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLRespon
se.h" |
| 18 | 18 |
| 19 class ExtensionDispatcher; | 19 class ExtensionDispatcher; |
| 20 class GURL; | 20 class GURL; |
| 21 class SkBitmap; | 21 class SkBitmap; |
| 22 struct ExtensionMsg_ExecuteCode_Params; | 22 struct ExtensionMsg_ExecuteCode_Params; |
| 23 struct WebApplicationInfo; | 23 struct WebApplicationInfo; |
| 24 | 24 |
| 25 namespace base { | 25 namespace base { |
| 26 class ListValue; | 26 class ListValue; |
| 27 } | 27 } |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 // Type of view attached with RenderView. | 116 // Type of view attached with RenderView. |
| 117 content::ViewType view_type_; | 117 content::ViewType view_type_; |
| 118 | 118 |
| 119 // Id number of browser window which RenderView is attached to. | 119 // Id number of browser window which RenderView is attached to. |
| 120 int browser_window_id_; | 120 int browser_window_id_; |
| 121 | 121 |
| 122 DISALLOW_COPY_AND_ASSIGN(ExtensionHelper); | 122 DISALLOW_COPY_AND_ASSIGN(ExtensionHelper); |
| 123 }; | 123 }; |
| 124 | 124 |
| 125 #endif // CHROME_RENDERER_EXTENSIONS_EXTENSION_HELPER_H_ | 125 #endif // CHROME_RENDERER_EXTENSIONS_EXTENSION_HELPER_H_ |
| OLD | NEW |