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

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

Issue 10916312: Support DIR_STANDALONE_EXTERNAL_EXTENSIONS on Chrome OS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/extensions/external_provider_impl.cc ('k') | chrome/common/chrome_paths.cc » ('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 (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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 DIR_MANAGED_PREFS, // Directory that stores the managed prefs plist 54 DIR_MANAGED_PREFS, // Directory that stores the managed prefs plist
55 // files for the current user. 55 // files for the current user.
56 #endif 56 #endif
57 #if defined(OS_CHROMEOS) || defined(OS_MACOSX) 57 #if defined(OS_CHROMEOS) || defined(OS_MACOSX)
58 DIR_USER_EXTERNAL_EXTENSIONS, // Directory for per-user external extensions 58 DIR_USER_EXTERNAL_EXTENSIONS, // Directory for per-user external extensions
59 // on Chrome Mac. On Chrome OS, this path is 59 // on Chrome Mac. On Chrome OS, this path is
60 // used for OEM customization. 60 // used for OEM customization.
61 // Getting this path does not create it. 61 // Getting this path does not create it.
62 #endif 62 #endif
63 63
64 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) 64 #if defined(OS_LINUX)
65 DIR_STANDALONE_EXTERNAL_EXTENSIONS, // Directory for 'per-extension' 65 DIR_STANDALONE_EXTERNAL_EXTENSIONS, // Directory for 'per-extension'
66 // definition manifest files that 66 // definition manifest files that
67 // describe extensions which are to be 67 // describe extensions which are to be
68 // installed when chrome is run. 68 // installed when chrome is run.
69 #endif 69 #endif
70 DIR_EXTERNAL_EXTENSIONS, // Directory where installer places .crx files. 70 DIR_EXTERNAL_EXTENSIONS, // Directory where installer places .crx files.
71 71
72 DIR_DEFAULT_APPS, // Directory where installer places .crx files 72 DIR_DEFAULT_APPS, // Directory where installer places .crx files
73 // to be installed when chrome is first run. 73 // to be installed when chrome is first run.
74 DIR_PEPPER_FLASH_PLUGIN, // Directory to the bundled Pepper Flash plugin, 74 DIR_PEPPER_FLASH_PLUGIN, // Directory to the bundled Pepper Flash plugin,
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 125
126 PATH_END 126 PATH_END
127 }; 127 };
128 128
129 // Call once to register the provider for the path keys defined above. 129 // Call once to register the provider for the path keys defined above.
130 void RegisterPathProvider(); 130 void RegisterPathProvider();
131 131
132 } // namespace chrome 132 } // namespace chrome
133 133
134 #endif // CHROME_COMMON_CHROME_PATHS_H__ 134 #endif // CHROME_COMMON_CHROME_PATHS_H__
OLDNEW
« no previous file with comments | « chrome/browser/extensions/external_provider_impl.cc ('k') | chrome/common/chrome_paths.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698