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

Unified Diff: shell/child_process.cc

Issue 775343004: Move //mojo/shell to //shell (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « shell/child_process.h ('k') | shell/child_process_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: shell/child_process.cc
diff --git a/mojo/shell/child_process.cc b/shell/child_process.cc
similarity index 81%
rename from mojo/shell/child_process.cc
rename to shell/child_process.cc
index 79b994025cf1debf7935eb635fb4ff6c260a9909..e53ac0af2abf6d1140aac6cc692d4775976ba3ad 100644
--- a/mojo/shell/child_process.cc
+++ b/shell/child_process.cc
@@ -2,15 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "mojo/shell/child_process.h"
+#include "shell/child_process.h"
#include "base/command_line.h"
#include "base/logging.h"
#include "base/strings/string_number_conversions.h"
#include "mojo/edk/embedder/platform_channel_pair.h"
-#include "mojo/shell/app_child_process.h"
-#include "mojo/shell/switches.h"
-#include "mojo/shell/test_child_process.h"
+#include "shell/app_child_process.h"
+#include "shell/switches.h"
+#include "shell/test_child_process.h"
namespace mojo {
namespace shell {
@@ -25,8 +25,9 @@ scoped_ptr<ChildProcess> ChildProcess::Create(
return scoped_ptr<ChildProcess>();
int type_as_int;
- CHECK(base::StringToInt(command_line.GetSwitchValueASCII(
- switches::kChildProcessType), &type_as_int));
+ CHECK(base::StringToInt(
+ command_line.GetSwitchValueASCII(switches::kChildProcessType),
+ &type_as_int));
scoped_ptr<ChildProcess> rv;
switch (type_as_int) {
« no previous file with comments | « shell/child_process.h ('k') | shell/child_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698