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

Side by Side Diff: chrome/renderer/render_widget_fullscreen_pepper.cc

Issue 5984006: Add a dummy implementation of a new WebWidget::confirmComposition() method. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 12 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 | no next file » | 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "chrome/renderer/render_widget_fullscreen_pepper.h" 5 #include "chrome/renderer/render_widget_fullscreen_pepper.h"
6 6
7 #include "chrome/common/render_messages.h" 7 #include "chrome/common/render_messages.h"
8 #include "chrome/renderer/render_thread.h" 8 #include "chrome/renderer/render_thread.h"
9 #include "third_party/WebKit/WebKit/chromium/public/WebCursorInfo.h" 9 #include "third_party/WebKit/WebKit/chromium/public/WebCursorInfo.h"
10 #include "third_party/WebKit/WebKit/chromium/public/WebSize.h" 10 #include "third_party/WebKit/WebKit/chromium/public/WebSize.h"
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 int selectionEnd) { 92 int selectionEnd) {
93 NOTIMPLEMENTED(); 93 NOTIMPLEMENTED();
94 return false; 94 return false;
95 } 95 }
96 96
97 virtual bool confirmComposition() { 97 virtual bool confirmComposition() {
98 NOTIMPLEMENTED(); 98 NOTIMPLEMENTED();
99 return false; 99 return false;
100 } 100 }
101 101
102 virtual bool confirmComposition(const WebString& text) {
103 NOTIMPLEMENTED();
104 return false;
105 }
106
102 virtual WebTextInputType textInputType() { 107 virtual WebTextInputType textInputType() {
103 NOTIMPLEMENTED(); 108 NOTIMPLEMENTED();
104 return WebKit::WebTextInputTypeNone; 109 return WebKit::WebTextInputTypeNone;
105 } 110 }
106 111
107 virtual WebRect caretOrSelectionBounds() { 112 virtual WebRect caretOrSelectionBounds() {
108 NOTIMPLEMENTED(); 113 NOTIMPLEMENTED();
109 return WebRect(); 114 return WebRect();
110 } 115 }
111 116
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 const gfx::Rect& paint_bounds, 227 const gfx::Rect& paint_bounds,
223 TransportDIB** dib, 228 TransportDIB** dib,
224 gfx::Rect* location, 229 gfx::Rect* location,
225 gfx::Rect* clip) { 230 gfx::Rect* clip) {
226 if (plugin_ && 231 if (plugin_ &&
227 plugin_->GetBitmapForOptimizedPluginPaint(paint_bounds, dib, 232 plugin_->GetBitmapForOptimizedPluginPaint(paint_bounds, dib,
228 location, clip)) 233 location, clip))
229 return plugin_; 234 return plugin_;
230 return NULL; 235 return NULL;
231 } 236 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698