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 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
438 const blink::WebString& main_text, | 438 const blink::WebString& main_text, |
439 const blink::WebString& sub_text, | 439 const blink::WebString& sub_text, |
440 blink::WebTextDirection hint) OVERRIDE; | 440 blink::WebTextDirection hint) OVERRIDE; |
441 virtual void hideValidationMessage() OVERRIDE; | 441 virtual void hideValidationMessage() OVERRIDE; |
442 virtual void moveValidationMessage( | 442 virtual void moveValidationMessage( |
443 const blink::WebRect& anchor_in_root_view) OVERRIDE; | 443 const blink::WebRect& anchor_in_root_view) OVERRIDE; |
444 | 444 |
445 // DEPRECATED | 445 // DEPRECATED |
446 virtual bool runModalBeforeUnloadDialog(blink::WebFrame* frame, | 446 virtual bool runModalBeforeUnloadDialog(blink::WebFrame* frame, |
447 const blink::WebString& message); | 447 const blink::WebString& message); |
448 #if !defined(CLEAR_CONTEXT_MENU_ON_WEB_FRAME_CLIENT) | |
jamesr
2014/03/06 21:59:26
don't think you should need this - if the base cla
| |
448 virtual void clearContextMenu(); | 449 virtual void clearContextMenu(); |
450 #endif | |
449 virtual void setStatusText(const blink::WebString& text); | 451 virtual void setStatusText(const blink::WebString& text); |
450 virtual void setMouseOverURL(const blink::WebURL& url); | 452 virtual void setMouseOverURL(const blink::WebURL& url); |
451 virtual void setKeyboardFocusURL(const blink::WebURL& url); | 453 virtual void setKeyboardFocusURL(const blink::WebURL& url); |
452 virtual void startDragging(blink::WebFrame* frame, | 454 virtual void startDragging(blink::WebFrame* frame, |
453 const blink::WebDragData& data, | 455 const blink::WebDragData& data, |
454 blink::WebDragOperationsMask mask, | 456 blink::WebDragOperationsMask mask, |
455 const blink::WebImage& image, | 457 const blink::WebImage& image, |
456 const blink::WebPoint& imageOffset); | 458 const blink::WebPoint& imageOffset); |
457 virtual bool acceptsLoadDrops(); | 459 virtual bool acceptsLoadDrops(); |
458 virtual void focusNext(); | 460 virtual void focusNext(); |
(...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1446 // use the Observer interface to filter IPC messages and receive frame change | 1448 // use the Observer interface to filter IPC messages and receive frame change |
1447 // notifications. | 1449 // notifications. |
1448 // --------------------------------------------------------------------------- | 1450 // --------------------------------------------------------------------------- |
1449 | 1451 |
1450 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1452 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1451 }; | 1453 }; |
1452 | 1454 |
1453 } // namespace content | 1455 } // namespace content |
1454 | 1456 |
1455 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1457 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |