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 CONTENT_RENDERER_BROWSER_PLUGIN_OLD_BROWSER_PLUGIN_H_ | 5 #ifndef CONTENT_RENDERER_BROWSER_PLUGIN_OLD_BROWSER_PLUGIN_H_ |
6 #define CONTENT_RENDERER_BROWSER_PLUGIN_OLD_BROWSER_PLUGIN_H_ | 6 #define CONTENT_RENDERER_BROWSER_PLUGIN_OLD_BROWSER_PLUGIN_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/process.h" | 8 #include "base/process.h" |
10 #include "content/renderer/render_view_impl.h" | 9 #include "content/renderer/render_view_impl.h" |
11 #include "ipc/ipc_channel_handle.h" | 10 #include "ipc/ipc_channel_handle.h" |
12 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" | 11 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" |
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" |
14 #include "ui/gfx/size.h" | 13 #include "ui/gfx/size.h" |
15 #include "webkit/plugins/webview_plugin.h" | 14 #include "webkit/plugins/webview_plugin.h" |
16 | 15 |
17 namespace content { | 16 namespace content { |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 RenderViewImpl* render_view_; | 80 RenderViewImpl* render_view_; |
82 WebKit::WebPluginParams plugin_params_; | 81 WebKit::WebPluginParams plugin_params_; |
83 webkit::WebViewPlugin* placeholder_; | 82 webkit::WebViewPlugin* placeholder_; |
84 webkit::ppapi::WebPluginImpl* plugin_; | 83 webkit::ppapi::WebPluginImpl* plugin_; |
85 int id_; | 84 int id_; |
86 | 85 |
87 DISALLOW_COPY_AND_ASSIGN(BrowserPlugin); | 86 DISALLOW_COPY_AND_ASSIGN(BrowserPlugin); |
88 }; | 87 }; |
89 | 88 |
90 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_OLD_BROWSER_PLUGIN_H_ | 89 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_OLD_BROWSER_PLUGIN_H_ |
OLD | NEW |