OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "v8_proxy.h" | 5 #include "v8_proxy.h" |
6 #undef LOG | 6 #undef LOG |
7 | 7 |
8 #include "webkit/tools/test_shell/test_shell.h" | 8 #include "webkit/tools/test_shell/test_shell.h" |
9 | 9 |
10 | 10 |
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 } | 582 } |
583 | 583 |
584 bool SpellCheckWord(const wchar_t* word, int word_len, | 584 bool SpellCheckWord(const wchar_t* word, int word_len, |
585 int* misspelling_start, int* misspelling_len) { | 585 int* misspelling_start, int* misspelling_len) { |
586 // Report all words being correctly spelled. | 586 // Report all words being correctly spelled. |
587 *misspelling_start = 0; | 587 *misspelling_start = 0; |
588 *misspelling_len = 0; | 588 *misspelling_len = 0; |
589 return true; | 589 return true; |
590 } | 590 } |
591 | 591 |
592 ScreenInfo GetScreenInfo(gfx::NativeViewId window) { | |
593 return GetScreenInfoHelper(gfx::NativeViewFromId(window)); | |
594 } | |
595 | |
596 bool IsPluginRunningInRendererProcess() { | 592 bool IsPluginRunningInRendererProcess() { |
597 return true; | 593 return true; |
598 } | 594 } |
599 | 595 |
600 bool GetPluginFinderURL(std::string* plugin_finder_url) { | 596 bool GetPluginFinderURL(std::string* plugin_finder_url) { |
601 return false; | 597 return false; |
602 } | 598 } |
603 | 599 |
604 bool IsDefaultPluginEnabled() { | 600 bool IsDefaultPluginEnabled() { |
605 return false; | 601 return false; |
606 } | 602 } |
607 | 603 |
608 std::wstring GetWebKitLocale() { | 604 std::wstring GetWebKitLocale() { |
609 return L"en-US"; | 605 return L"en-US"; |
610 } | 606 } |
611 | 607 |
612 } // namespace webkit_glue | 608 } // namespace webkit_glue |
OLD | NEW |