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

Side by Side Diff: webkit/tools/test_shell/test_shell.cc

Issue 58008: Replace webkit/glue/screen_info.h with WebKit/chromium/public/WebScreenInfo.h... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698