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 <set> | 5 #include <set> |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "chrome/test/ui/ui_test.h" | 8 #include "chrome/test/ui/ui_test.h" |
9 | 9 |
10 #include "base/base_switches.h" | 10 #include "base/base_switches.h" |
11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
13 #include "base/platform_thread.h" | 13 #include "base/platform_thread.h" |
14 #include "base/process_util.h" | 14 #include "base/process_util.h" |
15 #include "base/scoped_ptr.h" | 15 #include "base/scoped_ptr.h" |
16 #include "base/string_util.h" | 16 #include "base/string_util.h" |
17 #include "base/test_file_util.h" | 17 #include "base/test_file_util.h" |
18 #include "base/time.h" | 18 #include "base/time.h" |
19 #include "chrome/app/chrome_dll_resource.h" | 19 #include "chrome/app/chrome_dll_resource.h" |
20 #include "chrome/browser/url_fixer_upper.h" | 20 #include "chrome/browser/net/url_fixer_upper.h" |
21 #include "chrome/common/chrome_constants.h" | 21 #include "chrome/common/chrome_constants.h" |
22 #include "chrome/common/chrome_paths.h" | 22 #include "chrome/common/chrome_paths.h" |
23 #include "chrome/common/chrome_switches.h" | 23 #include "chrome/common/chrome_switches.h" |
24 #include "chrome/common/debug_flags.h" | 24 #include "chrome/common/debug_flags.h" |
25 #include "chrome/common/logging_chrome.h" | 25 #include "chrome/common/logging_chrome.h" |
26 #include "chrome/common/json_value_serializer.h" | 26 #include "chrome/common/json_value_serializer.h" |
27 #include "googleurl/src/gurl.h" | 27 #include "googleurl/src/gurl.h" |
28 #include "net/base/net_util.h" | 28 #include "net/base/net_util.h" |
29 | 29 |
30 #if defined(OS_WIN) | 30 #if defined(OS_WIN) |
(...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
800 // <*>RESULT <graph_name>: <trace_name>= <value> <units> | 800 // <*>RESULT <graph_name>: <trace_name>= <value> <units> |
801 // <*>RESULT <graph_name>: <trace_name>= {<mean>, <std deviation>} <units> | 801 // <*>RESULT <graph_name>: <trace_name>= {<mean>, <std deviation>} <units> |
802 // <*>RESULT <graph_name>: <trace_name>= [<value>,value,value,...,] <units> | 802 // <*>RESULT <graph_name>: <trace_name>= [<value>,value,value,...,] <units> |
803 wprintf(L"%lsRESULT %ls%ls: %ls= %ls%ls%ls %ls\n", | 803 wprintf(L"%lsRESULT %ls%ls: %ls= %ls%ls%ls %ls\n", |
804 important ? L"*" : L"", measurement.c_str(), modifier.c_str(), | 804 important ? L"*" : L"", measurement.c_str(), modifier.c_str(), |
805 trace.c_str(), prefix.c_str(), values.c_str(), suffix.c_str(), | 805 trace.c_str(), prefix.c_str(), values.c_str(), suffix.c_str(), |
806 units.c_str()); | 806 units.c_str()); |
807 } | 807 } |
808 | 808 |
809 #endif // OS_WIN | 809 #endif // OS_WIN |
OLD | NEW |