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

Side by Side Diff: chrome/test/perf/url_fetch_test.cc

Issue 12767006: [Cleanup] Remove StringPrintf from global namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, once more Created 7 years, 9 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/file_util.h" 6 #include "base/file_util.h"
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "base/path_service.h" 8 #include "base/path_service.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "base/stringprintf.h" 10 #include "base/stringprintf.h"
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 } 66 }
67 } else if (!wait_js_expr.empty()) { 67 } else if (!wait_js_expr.empty()) {
68 bool completed = WaitUntilJavaScriptCondition( 68 bool completed = WaitUntilJavaScriptCondition(
69 tab.get(), 69 tab.get(),
70 UTF8ToWide(wait_js_frame_xpath), 70 UTF8ToWide(wait_js_frame_xpath),
71 UTF8ToWide(wait_js_expr), 71 UTF8ToWide(wait_js_expr),
72 wait_js_timeout); 72 wait_js_timeout);
73 ASSERT_TRUE(completed); 73 ASSERT_TRUE(completed);
74 } 74 }
75 if (var_to_fetch) { 75 if (var_to_fetch) {
76 std::string script = StringPrintf( 76 std::string script = base::StringPrintf(
77 "window.domAutomationController.send(%s);", var_to_fetch); 77 "window.domAutomationController.send(%s);", var_to_fetch);
78 78
79 std::wstring value; 79 std::wstring value;
80 bool success = tab->ExecuteAndExtractString(L"", ASCIIToWide(script), 80 bool success = tab->ExecuteAndExtractString(L"", ASCIIToWide(script),
81 &value); 81 &value);
82 ASSERT_TRUE(success); 82 ASSERT_TRUE(success);
83 result->javascript_variable = WideToUTF8(value); 83 result->javascript_variable = WideToUTF8(value);
84 } 84 }
85 } 85 }
86 }; 86 };
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 // Write out the JS Variable if requested 175 // Write out the JS Variable if requested
176 base::FilePath jsvar_output_path = 176 base::FilePath jsvar_output_path =
177 cmd_line->GetSwitchValuePath("jsvar_output"); 177 cmd_line->GetSwitchValuePath("jsvar_output");
178 if (!jsvar_output_path.value().empty()) { 178 if (!jsvar_output_path.value().empty()) {
179 ASSERT_TRUE(WriteValueToFile(result.javascript_variable, 179 ASSERT_TRUE(WriteValueToFile(result.javascript_variable,
180 jsvar_output_path)); 180 jsvar_output_path));
181 } 181 }
182 } 182 }
183 183
184 } // namespace 184 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698