| 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); | 442 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); |
| 443 virtual void didStartLoading(); | 443 virtual void didStartLoading(); |
| 444 virtual void didStopLoading(); | 444 virtual void didStopLoading(); |
| 445 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, | 445 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, |
| 446 double load_progress); | 446 double load_progress); |
| 447 virtual bool isSmartInsertDeleteEnabled(); | 447 virtual bool isSmartInsertDeleteEnabled(); |
| 448 virtual bool isSelectTrailingWhitespaceEnabled(); | 448 virtual bool isSelectTrailingWhitespaceEnabled(); |
| 449 virtual void didCancelCompositionOnSelectionChange(); | 449 virtual void didCancelCompositionOnSelectionChange(); |
| 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 void didChangeTouchEditingHandleVisibility(bool visible) OVERRIDE; |
| 452 virtual bool handleCurrentKeyboardEvent(); | 453 virtual bool handleCurrentKeyboardEvent(); |
| 453 virtual WebKit::WebColorChooser* createColorChooser( | 454 virtual WebKit::WebColorChooser* createColorChooser( |
| 454 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); | 455 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); |
| 455 virtual bool runFileChooser( | 456 virtual bool runFileChooser( |
| 456 const WebKit::WebFileChooserParams& params, | 457 const WebKit::WebFileChooserParams& params, |
| 457 WebKit::WebFileChooserCompletion* chooser_completion); | 458 WebKit::WebFileChooserCompletion* chooser_completion); |
| 458 virtual void runModalAlertDialog(WebKit::WebFrame* frame, | 459 virtual void runModalAlertDialog(WebKit::WebFrame* frame, |
| 459 const WebKit::WebString& message); | 460 const WebKit::WebString& message); |
| 460 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, | 461 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, |
| 461 const WebKit::WebString& message); | 462 const WebKit::WebString& message); |
| (...skipping 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1603 // use the Observer interface to filter IPC messages and receive frame change | 1604 // use the Observer interface to filter IPC messages and receive frame change |
| 1604 // notifications. | 1605 // notifications. |
| 1605 // --------------------------------------------------------------------------- | 1606 // --------------------------------------------------------------------------- |
| 1606 | 1607 |
| 1607 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1608 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1608 }; | 1609 }; |
| 1609 | 1610 |
| 1610 } // namespace content | 1611 } // namespace content |
| 1611 | 1612 |
| 1612 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1613 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |