nacl_constants.cc 793 B

123456789101112131415161718192021222324
  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
  3. // found in the LICENSE file.
  4. #include "components/nacl/common/nacl_constants.h"
  5. #include "base/files/file_path.h"
  6. namespace nacl {
  7. const char kNaClPluginName[] = "Native Client";
  8. const char kNaClPluginMimeType[] = "application/x-nacl";
  9. const char kNaClPluginExtension[] = "";
  10. const char kNaClPluginDescription[] = "Native Client Executable";
  11. const char kPnaclPluginMimeType[] = "application/x-pnacl";
  12. const char kPnaclPluginExtension[] = "";
  13. const char kPnaclPluginDescription[] = "Portable Native Client Executable";
  14. const base::FilePath::CharType kInternalNaClPluginFileName[] =
  15. FILE_PATH_LITERAL("internal-nacl-plugin");
  16. } // namespace nacl