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