Correctly handle empty data in RenderMessageFilter::OnCacheableMetadataAvailable()
[chromium-blink-merge.git] / mojo / shell / switches.cc
blob878a127b2adfb312930741605e9723384988aef9
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
3 // found in the LICENSE file.
5 #include "mojo/shell/switches.h"
7 #include "base/basictypes.h"
9 namespace switches {
11 // If set apps downloaded are not deleted.
12 const char kDontDeleteOnDownload[] = "dont-delete-on-download";
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";
19 // If set apps downloaded are saved in with a predictable filename, to help
20 // remote debugging: when gdb is used through gdbserver, it needs to be able to
21 // find locally any loaded library. For this, gdb use the filename of the
22 // library. When using this flag, the application are named with the sha256 of
23 // their content.
24 const char kPredictableAppFilenames[] = "predictable-app-filenames";
26 // Pull apps via component updater, rather than using default local resolution
27 // to find them.
28 const char kUseUpdater[] = "use-updater";
30 } // namespace switches