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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 18281002: Move WebDropData to content::DropData and split off conversion function. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Mac build error. Created 7 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 | Annotate | Revision Log
« no previous file with comments | « content/renderer/drop_data_builder.cc ('k') | content/renderer/render_view_impl.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) 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_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 #pragma warning(disable: 4250) 73 #pragma warning(disable: 4250)
74 #endif 74 #endif
75 75
76 class CommandLine; 76 class CommandLine;
77 class PepperDeviceTest; 77 class PepperDeviceTest;
78 class SkBitmap; 78 class SkBitmap;
79 struct PP_NetAddress_Private; 79 struct PP_NetAddress_Private;
80 struct ViewMsg_Navigate_Params; 80 struct ViewMsg_Navigate_Params;
81 struct ViewMsg_PostMessage_Params; 81 struct ViewMsg_PostMessage_Params;
82 struct ViewMsg_StopFinding_Params; 82 struct ViewMsg_StopFinding_Params;
83 struct WebDropData;
84 83
85 namespace ui { 84 namespace ui {
86 struct SelectedFileInfo; 85 struct SelectedFileInfo;
87 } // namespace ui 86 } // namespace ui
88 87
89 namespace webkit { 88 namespace webkit {
90 89
91 namespace ppapi { 90 namespace ppapi {
92 class PluginInstance; 91 class PluginInstance;
93 } // namespace ppapi 92 } // namespace ppapi
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 class RenderViewTest; 155 class RenderViewTest;
157 class RendererAccessibility; 156 class RendererAccessibility;
158 class RendererDateTimePicker; 157 class RendererDateTimePicker;
159 class RendererPpapiHost; 158 class RendererPpapiHost;
160 class RendererWebColorChooserImpl; 159 class RendererWebColorChooserImpl;
161 class RenderWidgetFullscreenPepper; 160 class RenderWidgetFullscreenPepper;
162 class SpeechRecognitionDispatcher; 161 class SpeechRecognitionDispatcher;
163 class StatsCollectionController; 162 class StatsCollectionController;
164 class WebPluginDelegateProxy; 163 class WebPluginDelegateProxy;
165 struct CustomContextMenuContext; 164 struct CustomContextMenuContext;
165 struct DropData;
166 struct FaviconURL; 166 struct FaviconURL;
167 struct FileChooserParams; 167 struct FileChooserParams;
168 struct RenderViewImplParams; 168 struct RenderViewImplParams;
169 169
170 #if defined(OS_ANDROID) 170 #if defined(OS_ANDROID)
171 class WebMediaPlayerManagerAndroid; 171 class WebMediaPlayerManagerAndroid;
172 class WebMediaPlayerProxyAndroid; 172 class WebMediaPlayerProxyAndroid;
173 #endif 173 #endif
174 174
175 // We need to prevent a page from trying to create infinite popups. It is not 175 // We need to prevent a page from trying to create infinite popups. It is not
(...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after
976 const gfx::Size& disable_scrollbars_size_limit); 976 const gfx::Size& disable_scrollbars_size_limit);
977 void OnDisassociateFromPopupCount(); 977 void OnDisassociateFromPopupCount();
978 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, 978 void OnDragSourceEndedOrMoved(const gfx::Point& client_point,
979 const gfx::Point& screen_point, 979 const gfx::Point& screen_point,
980 bool ended, 980 bool ended,
981 WebKit::WebDragOperation drag_operation); 981 WebKit::WebDragOperation drag_operation);
982 void OnDragSourceSystemDragEnded(); 982 void OnDragSourceSystemDragEnded();
983 void OnDragTargetDrop(const gfx::Point& client_pt, 983 void OnDragTargetDrop(const gfx::Point& client_pt,
984 const gfx::Point& screen_pt, 984 const gfx::Point& screen_pt,
985 int key_modifiers); 985 int key_modifiers);
986 void OnDragTargetDragEnter(const WebDropData& drop_data, 986 void OnDragTargetDragEnter(const DropData& drop_data,
987 const gfx::Point& client_pt, 987 const gfx::Point& client_pt,
988 const gfx::Point& screen_pt, 988 const gfx::Point& screen_pt,
989 WebKit::WebDragOperationsMask operations_allowed, 989 WebKit::WebDragOperationsMask operations_allowed,
990 int key_modifiers); 990 int key_modifiers);
991 void OnDragTargetDragLeave(); 991 void OnDragTargetDragLeave();
992 void OnDragTargetDragOver(const gfx::Point& client_pt, 992 void OnDragTargetDragOver(const gfx::Point& client_pt,
993 const gfx::Point& screen_pt, 993 const gfx::Point& screen_pt,
994 WebKit::WebDragOperationsMask operations_allowed, 994 WebKit::WebDragOperationsMask operations_allowed,
995 int key_modifiers); 995 int key_modifiers);
996 void OnEnablePreferredSizeChangedMode(); 996 void OnEnablePreferredSizeChangedMode();
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
1567 // use the Observer interface to filter IPC messages and receive frame change 1567 // use the Observer interface to filter IPC messages and receive frame change
1568 // notifications. 1568 // notifications.
1569 // --------------------------------------------------------------------------- 1569 // ---------------------------------------------------------------------------
1570 1570
1571 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1571 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1572 }; 1572 };
1573 1573
1574 } // namespace content 1574 } // namespace content
1575 1575
1576 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1576 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/drop_data_builder.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698