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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 virtual bool enumerateChosenDirectory( | 434 virtual bool enumerateChosenDirectory( |
435 const WebKit::WebString& path, | 435 const WebKit::WebString& path, |
436 WebKit::WebFileChooserCompletion* chooser_completion); | 436 WebKit::WebFileChooserCompletion* chooser_completion); |
437 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); | 437 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); |
438 virtual void didStartLoading(); | 438 virtual void didStartLoading(); |
439 virtual void didStopLoading(); | 439 virtual void didStopLoading(); |
440 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, | 440 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, |
441 double load_progress); | 441 double load_progress); |
442 virtual bool isSmartInsertDeleteEnabled(); | 442 virtual bool isSmartInsertDeleteEnabled(); |
443 virtual bool isSelectTrailingWhitespaceEnabled(); | 443 virtual bool isSelectTrailingWhitespaceEnabled(); |
| 444 virtual void didCancelCompositionOnSelectionChange(); |
444 virtual void didChangeSelection(bool is_selection_empty); | 445 virtual void didChangeSelection(bool is_selection_empty); |
445 virtual void didExecuteCommand(const WebKit::WebString& command_name); | 446 virtual void didExecuteCommand(const WebKit::WebString& command_name); |
446 virtual bool handleCurrentKeyboardEvent(); | 447 virtual bool handleCurrentKeyboardEvent(); |
447 virtual WebKit::WebColorChooser* createColorChooser( | 448 virtual WebKit::WebColorChooser* createColorChooser( |
448 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); | 449 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); |
449 virtual bool runFileChooser( | 450 virtual bool runFileChooser( |
450 const WebKit::WebFileChooserParams& params, | 451 const WebKit::WebFileChooserParams& params, |
451 WebKit::WebFileChooserCompletion* chooser_completion); | 452 WebKit::WebFileChooserCompletion* chooser_completion); |
452 virtual void runModalAlertDialog(WebKit::WebFrame* frame, | 453 virtual void runModalAlertDialog(WebKit::WebFrame* frame, |
453 const WebKit::WebString& message); | 454 const WebKit::WebString& message); |
(...skipping 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1592 // use the Observer interface to filter IPC messages and receive frame change | 1593 // use the Observer interface to filter IPC messages and receive frame change |
1593 // notifications. | 1594 // notifications. |
1594 // --------------------------------------------------------------------------- | 1595 // --------------------------------------------------------------------------- |
1595 | 1596 |
1596 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1597 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1597 }; | 1598 }; |
1598 | 1599 |
1599 } // namespace content | 1600 } // namespace content |
1600 | 1601 |
1601 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1602 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |