Index: mojo/shell/standalone/scoped_user_data_dir.cc |
diff --git a/mojo/runner/scoped_user_data_dir.cc b/mojo/shell/standalone/scoped_user_data_dir.cc |
similarity index 85% |
rename from mojo/runner/scoped_user_data_dir.cc |
rename to mojo/shell/standalone/scoped_user_data_dir.cc |
index 8709475b6dbdd451a383894f2ed2e729fa29f525..dc92dfe5ec9cab927737ad2d1e1ced10095b66ee 100644 |
--- a/mojo/runner/scoped_user_data_dir.cc |
+++ b/mojo/shell/standalone/scoped_user_data_dir.cc |
@@ -2,14 +2,14 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "mojo/runner/scoped_user_data_dir.h" |
+#include "mojo/shell/standalone/scoped_user_data_dir.h" |
#include "base/command_line.h" |
#include "base/logging.h" |
-#include "mojo/runner/switches.h" |
+#include "mojo/shell/standalone/switches.h" |
namespace mojo { |
-namespace runner { |
+namespace shell { |
ScopedUserDataDir::ScopedUserDataDir() { |
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
@@ -33,8 +33,7 @@ ScopedUserDataDir::ScopedUserDataDir() { |
command_line->AppendSwitchPath(switches::kUserDataDir, temp_dir_.path()); |
} |
-ScopedUserDataDir::~ScopedUserDataDir() { |
-} |
+ScopedUserDataDir::~ScopedUserDataDir() {} |
-} // namespace runner |
+} // namespace shell |
} // namespace mojo |