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

Unified Diff: services/shell/public/cpp/lib/init_commandline.cc

Issue 1882423004: Move shell service to toplevel shell namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/shell/public/cpp/lib/identity.cc ('k') | services/shell/public/cpp/lib/interface_factory_binder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/shell/public/cpp/lib/init_commandline.cc
diff --git a/services/shell/public/cpp/lib/init_commandline.cc b/services/shell/public/cpp/lib/init_commandline.cc
index a61797b4fccf782f7830d5b01b3a2e35cf25cc3a..73c201116f08b9d21d1c606cc69669f007351dbc 100644
--- a/services/shell/public/cpp/lib/init_commandline.cc
+++ b/services/shell/public/cpp/lib/init_commandline.cc
@@ -4,19 +4,19 @@
#include "build/build_config.h"
-namespace mojo {
+namespace shell {
extern int g_application_runner_argc;
extern const char* const* g_application_runner_argv;
-}
+} // namespace shell
#if !defined(OS_WIN)
extern "C" {
__attribute__((visibility("default"))) void InitCommandLineArgs(
int argc, const char* const* argv) {
- mojo::g_application_runner_argc = argc;
- mojo::g_application_runner_argv = argv;
+ shell::g_application_runner_argc = argc;
+ shell::g_application_runner_argv = argv;
}
}
#endif
« no previous file with comments | « services/shell/public/cpp/lib/identity.cc ('k') | services/shell/public/cpp/lib/interface_factory_binder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698