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 "V8Proxy.h" | 5 #include "V8Proxy.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 #include "base/base_paths.h" | 10 #include "base/base_paths.h" |
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 return true; | 660 return true; |
661 } | 661 } |
662 #endif // OS_WIN | 662 #endif // OS_WIN |
663 return false; | 663 return false; |
664 } | 664 } |
665 | 665 |
666 std::wstring GetWebKitLocale() { | 666 std::wstring GetWebKitLocale() { |
667 return L"en-US"; | 667 return L"en-US"; |
668 } | 668 } |
669 | 669 |
| 670 void CloseIdleConnections() { |
| 671 // Used in benchmarking, Ignored for test_shell. |
| 672 } |
| 673 |
| 674 void SetCacheMode(bool enabled) { |
| 675 // Used in benchmarking, Ignored for test_shell. |
| 676 } |
| 677 |
670 } // namespace webkit_glue | 678 } // namespace webkit_glue |
OLD | NEW |