| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "config.h" | 5 #include "config.h" |
| 6 | 6 |
| 7 #undef LOG | 7 #undef LOG |
| 8 | 8 |
| 9 #include "base/at_exit.h" | 9 #include "base/at_exit.h" |
| 10 #include "base/gfx/native_widget_types.h" | 10 #include "base/gfx/native_widget_types.h" |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 } | 201 } |
| 202 | 202 |
| 203 bool SpellCheckWord(const wchar_t* word, int word_len, | 203 bool SpellCheckWord(const wchar_t* word, int word_len, |
| 204 int* misspelling_start, int* misspelling_len) { | 204 int* misspelling_start, int* misspelling_len) { |
| 205 // Report all words being correctly spelled. | 205 // Report all words being correctly spelled. |
| 206 *misspelling_start = 0; | 206 *misspelling_start = 0; |
| 207 *misspelling_len = 0; | 207 *misspelling_len = 0; |
| 208 return true; | 208 return true; |
| 209 } | 209 } |
| 210 | 210 |
| 211 bool GetPlugins(bool refresh, std::vector<WebPluginInfo>* plugins) { | 211 void GetPlugins(bool refresh, std::vector<WebPluginInfo>* plugins) { |
| 212 return false; | |
| 213 } | 212 } |
| 214 | 213 |
| 215 bool IsPluginRunningInRendererProcess() { | 214 bool IsPluginRunningInRendererProcess() { |
| 216 return false; | 215 return false; |
| 217 } | 216 } |
| 218 | 217 |
| 219 bool GetPluginFinderURL(std::string* plugin_finder_url) { | 218 bool GetPluginFinderURL(std::string* plugin_finder_url) { |
| 220 return false; | 219 return false; |
| 221 } | 220 } |
| 222 | 221 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 244 bool DownloadUrl(const std::string& url, HWND caller_window) { | 243 bool DownloadUrl(const std::string& url, HWND caller_window) { |
| 245 return false; | 244 return false; |
| 246 } | 245 } |
| 247 #endif | 246 #endif |
| 248 | 247 |
| 249 } // namespace webkit_glue | 248 } // namespace webkit_glue |
| 250 | 249 |
| 251 #if defined(COMPILER_GCC) | 250 #if defined(COMPILER_GCC) |
| 252 #pragma GCC visibility pop | 251 #pragma GCC visibility pop |
| 253 #endif | 252 #endif |
| OLD | NEW |