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

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: Check tool tip is empty in Mac code. Created 9 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 | « content/common/view_messages.h ('k') | content/renderer/render_view.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) 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 739 matching lines...) Expand 10 before | Expand all | Expand 10 after
1154 // bunch of stuff, you should probably create a helper class and put your 1152 // bunch of stuff, you should probably create a helper class and put your
1155 // data and methods on that to avoid bloating RenderView more. You can use 1153 // data and methods on that to avoid bloating RenderView more. You can use
1156 // the Observer interface to filter IPC messages and receive frame change 1154 // the Observer interface to filter IPC messages and receive frame change
1157 // notifications. 1155 // notifications.
1158 // --------------------------------------------------------------------------- 1156 // ---------------------------------------------------------------------------
1159 1157
1160 DISALLOW_COPY_AND_ASSIGN(RenderView); 1158 DISALLOW_COPY_AND_ASSIGN(RenderView);
1161 }; 1159 };
1162 1160
1163 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ 1161 #endif // CONTENT_RENDERER_RENDER_VIEW_H_
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698