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

Side by Side Diff: mojo/shell/switches.cc

Issue 1126393006: core_services: Run different services in different processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unit tests by never having an empty qualifier. Created 5 years, 7 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
« no previous file with comments | « mojo/shell/switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "mojo/shell/switches.h" 5 #include "mojo/shell/switches.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
11 // If set apps downloaded are not deleted. 11 // If set apps downloaded are not deleted.
12 const char kDontDeleteOnDownload[] = "dont-delete-on-download"; 12 const char kDontDeleteOnDownload[] = "dont-delete-on-download";
13 13
14 // Load apps in separate processes.
15 // TODO(vtl): Work in progress; doesn't work. Flip this to "disable" (or maybe
16 // change it to "single-process") when it works.
17 const char kEnableMultiprocess[] = "enable-multiprocess";
18
14 // If set apps downloaded are saved in with a predictable filename, to help 19 // If set apps downloaded are saved in with a predictable filename, to help
15 // remote debugging: when gdb is used through gdbserver, it needs to be able to 20 // remote debugging: when gdb is used through gdbserver, it needs to be able to
16 // find locally any loaded library. For this, gdb use the filename of the 21 // find locally any loaded library. For this, gdb use the filename of the
17 // library. When using this flag, the application are named with the sha256 of 22 // library. When using this flag, the application are named with the sha256 of
18 // their content. 23 // their content.
19 const char kPredictableAppFilenames[] = "predictable-app-filenames"; 24 const char kPredictableAppFilenames[] = "predictable-app-filenames";
20 25
21 } // namespace switches 26 } // namespace switches
OLDNEW
« no previous file with comments | « mojo/shell/switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698