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

Side by Side Diff: chrome/test/webdriver/commands/webelement_commands.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/commands/cookie_commands.cc ('k') | chrome/test/webdriver/frame_path.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/commands/webelement_commands.h" 5 #include "chrome/test/webdriver/commands/webelement_commands.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/format_macros.h" 8 #include "base/format_macros.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/string_split.h"
11 #include "base/string_util.h" 10 #include "base/string_util.h"
12 #include "base/stringprintf.h" 11 #include "base/stringprintf.h"
12 #include "base/strings/string_split.h"
13 #include "base/utf_string_conversions.h" 13 #include "base/utf_string_conversions.h"
14 #include "base/values.h" 14 #include "base/values.h"
15 #include "chrome/test/webdriver/commands/response.h" 15 #include "chrome/test/webdriver/commands/response.h"
16 #include "chrome/test/webdriver/webdriver_basic_types.h" 16 #include "chrome/test/webdriver/webdriver_basic_types.h"
17 #include "chrome/test/webdriver/webdriver_error.h" 17 #include "chrome/test/webdriver/webdriver_error.h"
18 #include "chrome/test/webdriver/webdriver_session.h" 18 #include "chrome/test/webdriver/webdriver_session.h"
19 #include "chrome/test/webdriver/webdriver_util.h" 19 #include "chrome/test/webdriver/webdriver_util.h"
20 #include "third_party/webdriver/atoms.h" 20 #include "third_party/webdriver/atoms.h"
21 21
22 namespace webdriver { 22 namespace webdriver {
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 return; 623 return;
624 } 624 }
625 if (!result->IsType(base::Value::TYPE_STRING)) { 625 if (!result->IsType(base::Value::TYPE_STRING)) {
626 response->SetError(new Error(kUnknownError, "Result is not string type")); 626 response->SetError(new Error(kUnknownError, "Result is not string type"));
627 return; 627 return;
628 } 628 }
629 response->SetValue(result.release()); 629 response->SetValue(result.release());
630 } 630 }
631 631
632 } // namespace webdriver 632 } // namespace webdriver
OLDNEW
« no previous file with comments | « chrome/test/webdriver/commands/cookie_commands.cc ('k') | chrome/test/webdriver/frame_path.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698