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

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

Issue 12378016: chrome: Update include paths of string_split.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « chrome/test/webdriver/webdriver_session.cc ('k') | chrome/tools/convert_dict/aff_reader.cc » ('j') | 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/scoped_temp_dir.h" 10 #include "base/files/scoped_temp_dir.h"
11 #include "base/format_macros.h" 11 #include "base/format_macros.h"
12 #include "base/json/json_reader.h" 12 #include "base/json/json_reader.h"
13 #include "base/json/json_writer.h" 13 #include "base/json/json_writer.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/rand_util.h" 15 #include "base/rand_util.h"
16 #include "base/string_split.h"
17 #include "base/string_util.h" 16 #include "base/string_util.h"
18 #include "base/stringprintf.h" 17 #include "base/stringprintf.h"
19 #include "base/strings/string_number_conversions.h" 18 #include "base/strings/string_number_conversions.h"
19 #include "base/strings/string_split.h"
20 #include "base/third_party/icu/icu_utf.h" 20 #include "base/third_party/icu/icu_utf.h"
21 #include "chrome/common/automation_id.h" 21 #include "chrome/common/automation_id.h"
22 #include "chrome/common/zip.h" 22 #include "chrome/common/zip.h"
23 #include "chrome/test/automation/automation_json_requests.h" 23 #include "chrome/test/automation/automation_json_requests.h"
24 24
25 using base::DictionaryValue; 25 using base::DictionaryValue;
26 using base::ListValue; 26 using base::ListValue;
27 using base::Value; 27 using base::Value;
28 28
29 namespace webdriver { 29 namespace webdriver {
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 550
551 bool ValueConversionTraits<webdriver::SkipParsing>::SetFromValue( 551 bool ValueConversionTraits<webdriver::SkipParsing>::SetFromValue(
552 const Value* value, const webdriver::SkipParsing* t) { 552 const Value* value, const webdriver::SkipParsing* t) {
553 return true; 553 return true;
554 } 554 }
555 555
556 bool ValueConversionTraits<webdriver::SkipParsing>::CanConvert( 556 bool ValueConversionTraits<webdriver::SkipParsing>::CanConvert(
557 const Value* value) { 557 const Value* value) {
558 return true; 558 return true;
559 } 559 }
OLDNEW
« no previous file with comments | « chrome/test/webdriver/webdriver_session.cc ('k') | chrome/tools/convert_dict/aff_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698