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

Side by Side Diff: chrome/test/webdriver/webdriver_util.cc

Issue 16753002: Use a direct include of strings headers in chrome/test/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « chrome/test/webdriver/webdriver_session.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "chrome/test/webdriver/webdriver_util.h" 5 #include "chrome/test/webdriver/webdriver_util.h"
6 6
7 #include "base/base64.h" 7 #include "base/base64.h"
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/files/file_enumerator.h" 10 #include "base/files/file_enumerator.h"
11 #include "base/files/scoped_temp_dir.h" 11 #include "base/files/scoped_temp_dir.h"
12 #include "base/format_macros.h" 12 #include "base/format_macros.h"
13 #include "base/json/json_reader.h" 13 #include "base/json/json_reader.h"
14 #include "base/json/json_writer.h" 14 #include "base/json/json_writer.h"
15 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
16 #include "base/rand_util.h" 16 #include "base/rand_util.h"
17 #include "base/string_util.h"
18 #include "base/stringprintf.h"
19 #include "base/strings/string_number_conversions.h" 17 #include "base/strings/string_number_conversions.h"
20 #include "base/strings/string_split.h" 18 #include "base/strings/string_split.h"
19 #include "base/strings/string_util.h"
20 #include "base/strings/stringprintf.h"
21 #include "base/third_party/icu/icu_utf.h" 21 #include "base/third_party/icu/icu_utf.h"
22 #include "chrome/common/automation_id.h" 22 #include "chrome/common/automation_id.h"
23 #include "chrome/test/automation/automation_json_requests.h" 23 #include "chrome/test/automation/automation_json_requests.h"
24 #include "third_party/zlib/google/zip.h" 24 #include "third_party/zlib/google/zip.h"
25 25
26 using base::DictionaryValue; 26 using base::DictionaryValue;
27 using base::ListValue; 27 using base::ListValue;
28 using base::Value; 28 using base::Value;
29 29
30 namespace webdriver { 30 namespace webdriver {
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 548
549 bool ValueConversionTraits<webdriver::SkipParsing>::SetFromValue( 549 bool ValueConversionTraits<webdriver::SkipParsing>::SetFromValue(
550 const Value* value, const webdriver::SkipParsing* t) { 550 const Value* value, const webdriver::SkipParsing* t) {
551 return true; 551 return true;
552 } 552 }
553 553
554 bool ValueConversionTraits<webdriver::SkipParsing>::CanConvert( 554 bool ValueConversionTraits<webdriver::SkipParsing>::CanConvert(
555 const Value* value) { 555 const Value* value) {
556 return true; 556 return true;
557 } 557 }
OLDNEW
« no previous file with comments | « chrome/test/webdriver/webdriver_session.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698