OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "webkit/glue/plugins/webplugin_delegate.h" | |
6 | |
7 namespace webkit_glue { | |
8 | |
9 bool WebPluginDelegate::StartFind(const string16& search_text, | |
10 bool case_sensitive, | |
11 int identifier) { | |
12 return false; | |
13 } | |
14 | |
15 NPWidgetExtensions* WebPluginDelegate::GetWidgetExtensions() { | |
16 return NULL; | |
17 } | |
18 | |
19 bool WebPluginDelegate::SetCursor(NPCursorType type) { | |
20 return false; | |
21 } | |
22 | |
23 NPFontExtensions* WebPluginDelegate::GetFontExtensions() { | |
24 return NULL; | |
25 } | |
26 | |
27 bool WebPluginDelegate::HasSelection() const { | |
28 return false; | |
29 } | |
30 | |
31 string16 WebPluginDelegate::GetSelectionAsText() const { | |
32 return string16(); | |
33 } | |
34 | |
35 string16 WebPluginDelegate::GetSelectionAsMarkup() const { | |
36 return string16(); | |
37 } | |
38 | |
39 | |
40 } // namespace webkit_glue | |
OLD | NEW |