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

Side by Side Diff: chrome/common/chrome_paths.h

Issue 16881004: Move chrome/nacl to components/nacl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Windows build fix Created 7 years, 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_COMMON_CHROME_PATHS_H__ 5 #ifndef CHROME_COMMON_CHROME_PATHS_H__
6 #define CHROME_COMMON_CHROME_PATHS_H__ 6 #define CHROME_COMMON_CHROME_PATHS_H__
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 // This file declares path keys for the chrome module. These can be used with 10 // This file declares path keys for the chrome module. These can be used with
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 FILE_RECORDED_SCRIPT, // Full path to the script.log file that 72 FILE_RECORDED_SCRIPT, // Full path to the script.log file that
73 // contains recorded browser events for 73 // contains recorded browser events for
74 // playback. 74 // playback.
75 FILE_FLASH_PLUGIN, // Full path to the internal NPAPI Flash plugin 75 FILE_FLASH_PLUGIN, // Full path to the internal NPAPI Flash plugin
76 // file. Querying this path will succeed no 76 // file. Querying this path will succeed no
77 // matter the file exists or not. 77 // matter the file exists or not.
78 FILE_PEPPER_FLASH_PLUGIN, // Full path to the bundled Pepper Flash plugin 78 FILE_PEPPER_FLASH_PLUGIN, // Full path to the bundled Pepper Flash plugin
79 // file. 79 // file.
80 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file. 80 FILE_PDF_PLUGIN, // Full path to the internal PDF plugin file.
81 81
82 #if defined(OS_POSIX) && !defined(OS_MACOSX)
83 FILE_NACL_HELPER, // Full path to Linux nacl_helper executable.
84 FILE_NACL_HELPER_BOOTSTRAP, // ... and nacl_helper_bootstrap executable.
85 #endif
86 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. 82 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file.
87 DIR_PNACL_BASE, // Full path to the base dir for PNaCl. 83 DIR_PNACL_BASE, // Full path to the base dir for PNaCl.
88 DIR_PNACL_COMPONENT, // Full path to the latest PNaCl version 84 DIR_PNACL_COMPONENT, // Full path to the latest PNaCl version
89 // (subdir of DIR_PNACL_BASE). 85 // (subdir of DIR_PNACL_BASE).
90 FILE_O3D_PLUGIN, // Full path to the O3D Pepper plugin file. 86 FILE_O3D_PLUGIN, // Full path to the O3D Pepper plugin file.
91 FILE_O1D_PLUGIN, // Full path to the O1D Pepper plugin file. 87 FILE_O1D_PLUGIN, // Full path to the O1D Pepper plugin file.
92 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. 88 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file.
93 DIR_COMPONENT_WIDEVINE_CDM, // Directory that contains component-updated 89 DIR_COMPONENT_WIDEVINE_CDM, // Directory that contains component-updated
94 // Widevine CDM files. 90 // Widevine CDM files.
95 FILE_WIDEVINE_CDM_ADAPTER, // Full path to the Widevine CDM adapter file. 91 FILE_WIDEVINE_CDM_ADAPTER, // Full path to the Widevine CDM adapter file.
(...skipping 22 matching lines...) Expand all
118 114
119 PATH_END 115 PATH_END
120 }; 116 };
121 117
122 // Call once to register the provider for the path keys defined above. 118 // Call once to register the provider for the path keys defined above.
123 void RegisterPathProvider(); 119 void RegisterPathProvider();
124 120
125 } // namespace chrome 121 } // namespace chrome
126 122
127 #endif // CHROME_COMMON_CHROME_PATHS_H__ 123 #endif // CHROME_COMMON_CHROME_PATHS_H__
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698