| 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 <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 double load_progress); | 447 double load_progress); |
| 448 virtual bool isSmartInsertDeleteEnabled(); | 448 virtual bool isSmartInsertDeleteEnabled(); |
| 449 virtual bool isSelectTrailingWhitespaceEnabled(); | 449 virtual bool isSelectTrailingWhitespaceEnabled(); |
| 450 virtual void didChangeSelection(bool is_selection_empty); | 450 virtual void didChangeSelection(bool is_selection_empty); |
| 451 virtual void didExecuteCommand(const WebKit::WebString& command_name); | 451 virtual void didExecuteCommand(const WebKit::WebString& command_name); |
| 452 virtual bool handleCurrentKeyboardEvent(); | 452 virtual bool handleCurrentKeyboardEvent(); |
| 453 virtual void didHandleGestureEvent(const WebKit::WebGestureEvent& event, | 453 virtual void didHandleGestureEvent(const WebKit::WebGestureEvent& event, |
| 454 bool event_swallowed) OVERRIDE; | 454 bool event_swallowed) OVERRIDE; |
| 455 virtual WebKit::WebColorChooser* createColorChooser( | 455 virtual WebKit::WebColorChooser* createColorChooser( |
| 456 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); | 456 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); |
| 457 virtual void requestAutocomplete(WebKit::WebFrame* frame, |
| 458 const WebKit::WebFormElement& form); |
| 457 virtual bool runFileChooser( | 459 virtual bool runFileChooser( |
| 458 const WebKit::WebFileChooserParams& params, | 460 const WebKit::WebFileChooserParams& params, |
| 459 WebKit::WebFileChooserCompletion* chooser_completion); | 461 WebKit::WebFileChooserCompletion* chooser_completion); |
| 460 virtual void runModalAlertDialog(WebKit::WebFrame* frame, | 462 virtual void runModalAlertDialog(WebKit::WebFrame* frame, |
| 461 const WebKit::WebString& message); | 463 const WebKit::WebString& message); |
| 462 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, | 464 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, |
| 463 const WebKit::WebString& message); | 465 const WebKit::WebString& message); |
| 464 virtual bool runModalPromptDialog(WebKit::WebFrame* frame, | 466 virtual bool runModalPromptDialog(WebKit::WebFrame* frame, |
| 465 const WebKit::WebString& message, | 467 const WebKit::WebString& message, |
| 466 const WebKit::WebString& default_value, | 468 const WebKit::WebString& default_value, |
| (...skipping 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1589 // use the Observer interface to filter IPC messages and receive frame change | 1591 // use the Observer interface to filter IPC messages and receive frame change |
| 1590 // notifications. | 1592 // notifications. |
| 1591 // --------------------------------------------------------------------------- | 1593 // --------------------------------------------------------------------------- |
| 1592 | 1594 |
| 1593 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1595 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1594 }; | 1596 }; |
| 1595 | 1597 |
| 1596 } // namespace content | 1598 } // namespace content |
| 1597 | 1599 |
| 1598 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1600 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |