Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: chrome/renderer/plugins/plugin_placeholder.h

Issue 15961005: move webkit/glue/cpp_* -> webkit/renderer/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test targets Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/renderer/external_host_bindings.h ('k') | content/content_renderer.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_PLUGINS_PLUGIN_PLACEHOLDER_H_ 5 #ifndef CHROME_RENDERER_PLUGINS_PLUGIN_PLACEHOLDER_H_
6 #define CHROME_RENDERER_PLUGINS_PLUGIN_PLACEHOLDER_H_ 6 #define CHROME_RENDERER_PLUGINS_PLUGIN_PLACEHOLDER_H_
7 7
8 #include "chrome/renderer/plugins/webview_plugin.h" 8 #include "chrome/renderer/plugins/webview_plugin.h"
9 #include "content/public/renderer/context_menu_client.h" 9 #include "content/public/renderer/context_menu_client.h"
10 #include "content/public/renderer/render_process_observer.h" 10 #include "content/public/renderer/render_process_observer.h"
11 #include "content/public/renderer/render_view_observer.h" 11 #include "content/public/renderer/render_view_observer.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h"
13 #include "webkit/glue/cpp_bound_class.h"
14 #include "webkit/plugins/webplugininfo.h" 13 #include "webkit/plugins/webplugininfo.h"
14 #include "webkit/renderer/cpp_bound_class.h"
15 15
16 struct ChromeViewHostMsg_GetPluginInfo_Status; 16 struct ChromeViewHostMsg_GetPluginInfo_Status;
17 17
18 namespace webkit { 18 namespace webkit {
19 struct WebPluginInfo; 19 struct WebPluginInfo;
20 } 20 }
21 21
22 // Placeholders can be used if a plug-in is missing or not available 22 // Placeholders can be used if a plug-in is missing or not available
23 // (blocked or disabled). 23 // (blocked or disabled).
24 class PluginPlaceholder : public content::RenderViewObserver, 24 class PluginPlaceholder : public content::RenderViewObserver,
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 bool has_host_; 184 bool has_host_;
185 bool finished_loading_; 185 bool finished_loading_;
186 string16 plugin_name_; 186 string16 plugin_name_;
187 std::string identifier_; 187 std::string identifier_;
188 int context_menu_request_id_; // Nonzero when request pending. 188 int context_menu_request_id_; // Nonzero when request pending.
189 189
190 DISALLOW_COPY_AND_ASSIGN(PluginPlaceholder); 190 DISALLOW_COPY_AND_ASSIGN(PluginPlaceholder);
191 }; 191 };
192 192
193 #endif // CHROME_RENDERER_PLUGINS_PLUGIN_PLACEHOLDER_H_ 193 #endif // CHROME_RENDERER_PLUGINS_PLUGIN_PLACEHOLDER_H_
OLDNEW
« no previous file with comments | « chrome/renderer/external_host_bindings.h ('k') | content/content_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698