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

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

Issue 12928: Implement visited link coloring. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years 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 "webkit/tools/test_shell/test_shell.h" 5 #include "webkit/tools/test_shell/test_shell.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/debug_on_start.h" 8 #include "base/debug_on_start.h"
9 #include "base/file_path.h" 9 #include "base/file_path.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 } 553 }
554 554
555 bool IsDefaultPluginEnabled() { 555 bool IsDefaultPluginEnabled() {
556 return false; 556 return false;
557 } 557 }
558 558
559 std::wstring GetWebKitLocale() { 559 std::wstring GetWebKitLocale() {
560 return L"en-US"; 560 return L"en-US";
561 } 561 }
562 562
563 uint64 webkit_glue::VisitedLinkHash(const char* canonical_url, size_t length) {
564 return 0;
565 }
566
567 bool webkit_glue::IsLinkVisited(uint64 link_hash) {
568 return false;
569 }
570
563 } // namespace webkit_glue 571 } // namespace webkit_glue
OLDNEW
« webkit/glue/chromium_bridge_impl.cc ('K') | « webkit/port/platform/chromium/LinkHashChromium.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698