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

Side by Side Diff: chrome/renderer/webplugin_delegate_proxy.h

Issue 155905: Separates ipc code from common (http://crbug.com/16829) (Closed)
Patch Set: Fixes reference to 'common_message_traits' it's actually 'common_param_traits' Created 11 years, 5 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
« no previous file with comments | « chrome/renderer/renderer_main_unittest.cc ('k') | chrome/renderer/webplugin_delegate_proxy.cc » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_WEBPLUGIN_DELEGATE_PROXY_H__ 5 #ifndef CHROME_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H__
6 #define CHROME_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H__ 6 #define CHROME_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H__
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/file_path.h" 11 #include "base/file_path.h"
12 #include "base/gfx/rect.h" 12 #include "base/gfx/rect.h"
13 #include "base/gfx/native_widget_types.h" 13 #include "base/gfx/native_widget_types.h"
14 #include "base/ref_counted.h" 14 #include "base/ref_counted.h"
15 #include "chrome/common/ipc_message.h"
16 #include "chrome/common/transport_dib.h" 15 #include "chrome/common/transport_dib.h"
17 #include "chrome/renderer/plugin_channel_host.h" 16 #include "chrome/renderer/plugin_channel_host.h"
18 #include "googleurl/src/gurl.h" 17 #include "googleurl/src/gurl.h"
18 #include "ipc/ipc_message.h"
19 #include "skia/ext/platform_canvas.h" 19 #include "skia/ext/platform_canvas.h"
20 #include "webkit/glue/webplugin.h" 20 #include "webkit/glue/webplugin.h"
21 #include "webkit/glue/webplugin_delegate.h" 21 #include "webkit/glue/webplugin_delegate.h"
22 22
23 struct NPObject; 23 struct NPObject;
24 class NPObjectStub; 24 class NPObjectStub;
25 struct NPVariant_Param; 25 struct NPVariant_Param;
26 struct PluginHostMsg_URLRequest_Params; 26 struct PluginHostMsg_URLRequest_Params;
27 class RenderView; 27 class RenderView;
28 class SkBitmap; 28 class SkBitmap;
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 // This lets us know which portion of the backing store has been painted into. 201 // This lets us know which portion of the backing store has been painted into.
202 gfx::Rect backing_store_painted_; 202 gfx::Rect backing_store_painted_;
203 203
204 // The url of the main frame hosting the plugin. 204 // The url of the main frame hosting the plugin.
205 GURL page_url_; 205 GURL page_url_;
206 206
207 DISALLOW_EVIL_CONSTRUCTORS(WebPluginDelegateProxy); 207 DISALLOW_EVIL_CONSTRUCTORS(WebPluginDelegateProxy);
208 }; 208 };
209 209
210 #endif // CHROME_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H_ 210 #endif // CHROME_RENDERER_WEBPLUGIN_DELEGATE_PROXY_H_
OLDNEW
« no previous file with comments | « chrome/renderer/renderer_main_unittest.cc ('k') | chrome/renderer/webplugin_delegate_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698