| 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 #undef LOG | 5 #undef LOG |
| 6 | 6 |
| 7 #include "webkit/tools/test_shell/test_shell.h" | 7 #include "webkit/tools/test_shell/test_shell.h" |
| 8 | 8 |
| 9 #include "base/base_paths.h" | 9 #include "base/base_paths.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 } | 794 } |
| 795 | 795 |
| 796 void CloseCurrentConnections() { | 796 void CloseCurrentConnections() { |
| 797 // Used in benchmarking, Ignored for test_shell. | 797 // Used in benchmarking, Ignored for test_shell. |
| 798 } | 798 } |
| 799 | 799 |
| 800 void SetCacheMode(bool enabled) { | 800 void SetCacheMode(bool enabled) { |
| 801 // Used in benchmarking, Ignored for test_shell. | 801 // Used in benchmarking, Ignored for test_shell. |
| 802 } | 802 } |
| 803 | 803 |
| 804 std::string GetProductVersion() { |
| 805 return std::string("Chrome/0.0.0.0"); |
| 806 } |
| 807 |
| 804 } // namespace webkit_glue | 808 } // namespace webkit_glue |
| OLD | NEW |