Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Side by Side Diff: content/renderer/render_view_impl.h

Issue 12088095: Adding didCancelCompositionOnSelectionChange callback. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698