summaryrefslogtreecommitdiffstats
path: root/net/tools/gdig/gdig.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-17 05:07:23 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-17 05:07:23 +0000
commit023ad6abe4b833b9478992176b13b5a073895cdc (patch)
tree2f73c09690e0ccd85fff810c7db4404a5245aeca /net/tools/gdig/gdig.cc
parent9e784dabf6278e848f081c7c24137ef8cc03671b (diff)
downloadchromium_src-023ad6abe4b833b9478992176b13b5a073895cdc.zip
chromium_src-023ad6abe4b833b9478992176b13b5a073895cdc.tar.gz
chromium_src-023ad6abe4b833b9478992176b13b5a073895cdc.tar.bz2
Replace FilePath with base::FilePath.
This is im preparation for removing the 'using" in file_path.h Review URL: https://codereview.chromium.org/12286020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@183021 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/tools/gdig/gdig.cc')
-rw-r--r--net/tools/gdig/gdig.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tools/gdig/gdig.cc b/net/tools/gdig/gdig.cc
index a388d18..cb394a5 100644
--- a/net/tools/gdig/gdig.cc
+++ b/net/tools/gdig/gdig.cc
@@ -114,7 +114,7 @@ typedef std::vector<ReplayLogEntry> ReplayLog;
// resolution and is in milliseconds. domain_name is the name to be resolved.
//
// The file should be sorted by timestamp in ascending time.
-bool LoadReplayLog(const FilePath& file_path, ReplayLog* replay_log) {
+bool LoadReplayLog(const base::FilePath& file_path, ReplayLog* replay_log) {
std::string original_replay_log_contents;
if (!file_util::ReadFileToString(file_path, &original_replay_log_contents)) {
fprintf(stderr, "Unable to open replay file %s\n",
@@ -329,7 +329,7 @@ bool GDig::ParseCommandLine(int argc, const char* argv[]) {
}
if (parsed_command_line.HasSwitch("replay_file")) {
- FilePath replay_path =
+ base::FilePath replay_path =
parsed_command_line.GetSwitchValuePath("replay_file");
if (!LoadReplayLog(replay_path, &replay_log_))
return false;