OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |