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

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

Issue 10392136: Add WebFrame pointer to WebViewClient::startDragging (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | « no previous file | 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 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 const WebKit::WebString& message, 406 const WebKit::WebString& message,
407 const WebKit::WebString& default_value, 407 const WebKit::WebString& default_value,
408 WebKit::WebString* actual_value); 408 WebKit::WebString* actual_value);
409 virtual bool runModalBeforeUnloadDialog(WebKit::WebFrame* frame, 409 virtual bool runModalBeforeUnloadDialog(WebKit::WebFrame* frame,
410 const WebKit::WebString& message); 410 const WebKit::WebString& message);
411 virtual void showContextMenu(WebKit::WebFrame* frame, 411 virtual void showContextMenu(WebKit::WebFrame* frame,
412 const WebKit::WebContextMenuData& data); 412 const WebKit::WebContextMenuData& data);
413 virtual void setStatusText(const WebKit::WebString& text); 413 virtual void setStatusText(const WebKit::WebString& text);
414 virtual void setMouseOverURL(const WebKit::WebURL& url); 414 virtual void setMouseOverURL(const WebKit::WebURL& url);
415 virtual void setKeyboardFocusURL(const WebKit::WebURL& url); 415 virtual void setKeyboardFocusURL(const WebKit::WebURL& url);
416 virtual void startDragging(const WebKit::WebDragData& data, 416 virtual void startDragging(WebKit::WebFrame* frame,
417 const WebKit::WebDragData& data,
417 WebKit::WebDragOperationsMask mask, 418 WebKit::WebDragOperationsMask mask,
418 const WebKit::WebImage& image, 419 const WebKit::WebImage& image,
419 const WebKit::WebPoint& imageOffset); 420 const WebKit::WebPoint& imageOffset);
420 virtual bool acceptsLoadDrops(); 421 virtual bool acceptsLoadDrops();
421 virtual void focusNext(); 422 virtual void focusNext();
422 virtual void focusPrevious(); 423 virtual void focusPrevious();
423 virtual void focusedNodeChanged(const WebKit::WebNode& node); 424 virtual void focusedNodeChanged(const WebKit::WebNode& node);
424 virtual void didUpdateLayout(); 425 virtual void didUpdateLayout();
425 virtual void navigateBackForwardSoon(int offset); 426 virtual void navigateBackForwardSoon(int offset);
426 virtual int historyBackListCount(); 427 virtual int historyBackListCount();
(...skipping 926 matching lines...) Expand 10 before | Expand all | Expand 10 after
1353 // bunch of stuff, you should probably create a helper class and put your 1354 // bunch of stuff, you should probably create a helper class and put your
1354 // data and methods on that to avoid bloating RenderView more. You can 1355 // data and methods on that to avoid bloating RenderView more. You can
1355 // use the Observer interface to filter IPC messages and receive frame change 1356 // use the Observer interface to filter IPC messages and receive frame change
1356 // notifications. 1357 // notifications.
1357 // --------------------------------------------------------------------------- 1358 // ---------------------------------------------------------------------------
1358 1359
1359 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1360 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1360 }; 1361 };
1361 1362
1362 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1363 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698