| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |