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

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

Issue 6974007: Move setToolTipText related functions from RenderView to RenderWidget. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Add Mac change. Created 9 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 virtual bool runModalBeforeUnloadDialog(WebKit::WebFrame* frame, 393 virtual bool runModalBeforeUnloadDialog(WebKit::WebFrame* frame,
394 const WebKit::WebString& message); 394 const WebKit::WebString& message);
395 virtual void showContextMenu(WebKit::WebFrame* frame, 395 virtual void showContextMenu(WebKit::WebFrame* frame,
396 const WebKit::WebContextMenuData& data); 396 const WebKit::WebContextMenuData& data);
397 virtual bool supportsFullscreen(); 397 virtual bool supportsFullscreen();
398 virtual void enterFullscreenForNode(const WebKit::WebNode&); 398 virtual void enterFullscreenForNode(const WebKit::WebNode&);
399 virtual void exitFullscreenForNode(const WebKit::WebNode&); 399 virtual void exitFullscreenForNode(const WebKit::WebNode&);
400 virtual void setStatusText(const WebKit::WebString& text); 400 virtual void setStatusText(const WebKit::WebString& text);
401 virtual void setMouseOverURL(const WebKit::WebURL& url); 401 virtual void setMouseOverURL(const WebKit::WebURL& url);
402 virtual void setKeyboardFocusURL(const WebKit::WebURL& url); 402 virtual void setKeyboardFocusURL(const WebKit::WebURL& url);
403 virtual void setToolTipText(const WebKit::WebString& text,
404 WebKit::WebTextDirection hint);
405 virtual void startDragging(const WebKit::WebDragData& data, 403 virtual void startDragging(const WebKit::WebDragData& data,
406 WebKit::WebDragOperationsMask mask, 404 WebKit::WebDragOperationsMask mask,
407 const WebKit::WebImage& image, 405 const WebKit::WebImage& image,
408 const WebKit::WebPoint& imageOffset); 406 const WebKit::WebPoint& imageOffset);
409 virtual bool acceptsLoadDrops(); 407 virtual bool acceptsLoadDrops();
410 virtual void focusNext(); 408 virtual void focusNext();
411 virtual void focusPrevious(); 409 virtual void focusPrevious();
412 virtual void focusedNodeChanged(const WebKit::WebNode& node); 410 virtual void focusedNodeChanged(const WebKit::WebNode& node);
413 virtual void navigateBackForwardSoon(int offset); 411 virtual void navigateBackForwardSoon(int offset);
414 virtual int historyBackListCount(); 412 virtual int historyBackListCount();
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 // bunch of stuff, you should probably create a helper class and put your 1147 // bunch of stuff, you should probably create a helper class and put your
1150 // data and methods on that to avoid bloating RenderView more. You can use 1148 // data and methods on that to avoid bloating RenderView more. You can use
1151 // the Observer interface to filter IPC messages and receive frame change 1149 // the Observer interface to filter IPC messages and receive frame change
1152 // notifications. 1150 // notifications.
1153 // --------------------------------------------------------------------------- 1151 // ---------------------------------------------------------------------------
1154 1152
1155 DISALLOW_COPY_AND_ASSIGN(RenderView); 1153 DISALLOW_COPY_AND_ASSIGN(RenderView);
1156 }; 1154 };
1157 1155
1158 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ 1156 #endif // CONTENT_RENDERER_RENDER_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698