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

Side by Side Diff: chrome/test/webdriver/frame_path.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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/frame_path.h" 5 #include "chrome/test/webdriver/frame_path.h"
6 6
7 #include "base/string_split.h" 7 #include "base/strings/string_split.h"
8 8
9 namespace webdriver { 9 namespace webdriver {
10 10
11 FramePath::FramePath() : path_("") {} 11 FramePath::FramePath() : path_("") {}
12 12
13 FramePath::FramePath(const FramePath& other) : path_(other.path_) {} 13 FramePath::FramePath(const FramePath& other) : path_(other.path_) {}
14 14
15 FramePath::FramePath(const std::string& path) : path_(path) {} 15 FramePath::FramePath(const std::string& path) : path_(path) {}
16 16
17 FramePath::~FramePath() {} 17 FramePath::~FramePath() {}
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 66
67 bool FramePath::IsSubframe() const { 67 bool FramePath::IsSubframe() const {
68 return path_.length(); 68 return path_.length();
69 } 69 }
70 70
71 const std::string& FramePath::value() const { 71 const std::string& FramePath::value() const {
72 return path_; 72 return path_;
73 } 73 }
74 74
75 } // namespace webdriver 75 } // namespace webdriver
OLDNEW
« no previous file with comments | « chrome/test/webdriver/commands/webelement_commands.cc ('k') | chrome/test/webdriver/webdriver_automation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698