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

Side by Side Diff: components/nacl/common/nacl_constants.cc

Issue 2501913002: Change the NaCl loader and broker processes to use the ServiceManager. (Closed)
Patch Set: rebase Created 4 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 unified diff | Download patch
« no previous file with comments | « components/nacl/common/nacl_constants.h ('k') | components/nacl/common/nacl_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "components/nacl/common/nacl_constants.h" 5 #include "components/nacl/common/nacl_constants.h"
6 6
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 8
9 namespace nacl { 9 namespace nacl {
10 10
11 const char kNaClPluginName[] = "Native Client"; 11 const char kNaClPluginName[] = "Native Client";
12 12
13 const char kNaClPluginMimeType[] = "application/x-nacl"; 13 const char kNaClPluginMimeType[] = "application/x-nacl";
14 const char kNaClPluginExtension[] = ""; 14 const char kNaClPluginExtension[] = "";
15 const char kNaClPluginDescription[] = "Native Client Executable"; 15 const char kNaClPluginDescription[] = "Native Client Executable";
16 16
17 const char kPnaclPluginMimeType[] = "application/x-pnacl"; 17 const char kPnaclPluginMimeType[] = "application/x-pnacl";
18 const char kPnaclPluginExtension[] = ""; 18 const char kPnaclPluginExtension[] = "";
19 const char kPnaclPluginDescription[] = "Portable Native Client Executable"; 19 const char kPnaclPluginDescription[] = "Portable Native Client Executable";
20 20
21 const base::FilePath::CharType kInternalNaClPluginFileName[] = 21 const base::FilePath::CharType kInternalNaClPluginFileName[] =
22 FILE_PATH_LITERAL("internal-nacl-plugin"); 22 FILE_PATH_LITERAL("internal-nacl-plugin");
23 23
24 const char kNaClBrokerServiceName[] = "nacl_broker";
25 const char kNaClLoaderServiceName[] = "nacl_loader";
26
24 } // namespace nacl 27 } // namespace nacl
OLDNEW
« no previous file with comments | « components/nacl/common/nacl_constants.h ('k') | components/nacl/common/nacl_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698