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

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

Issue 10754014: Wallpaper manager backend APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix thread violation Created 8 years, 5 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
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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. 95 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file.
96 FILE_LIBAVCODEC, // Full path to libavcodec media decoding 96 FILE_LIBAVCODEC, // Full path to libavcodec media decoding
97 // library. 97 // library.
98 FILE_LIBAVFORMAT, // Full path to libavformat media parsing 98 FILE_LIBAVFORMAT, // Full path to libavformat media parsing
99 // library. 99 // library.
100 FILE_LIBAVUTIL, // Full path to libavutil media utility library. 100 FILE_LIBAVUTIL, // Full path to libavutil media utility library.
101 FILE_RESOURCES_PACK, // Full path to the .pak file containing 101 FILE_RESOURCES_PACK, // Full path to the .pak file containing
102 // binary data (e.g., html files and images 102 // binary data (e.g., html files and images
103 // used by interal pages). 103 // used by interal pages).
104 DIR_RESOURCES_EXTENSION, // Full path to extension resources. 104 DIR_RESOURCES_EXTENSION, // Full path to extension resources.
105 #if defined(OS_CHROMEOS)
106 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos
107 // wallpapers reside.
108 #endif
105 109
106 // Valid only in development environment; TODO(darin): move these 110 // Valid only in development environment; TODO(darin): move these
107 DIR_GEN_TEST_DATA, // Directory where generated test data resides. 111 DIR_GEN_TEST_DATA, // Directory where generated test data resides.
108 DIR_TEST_DATA, // Directory where unit test data resides. 112 DIR_TEST_DATA, // Directory where unit test data resides.
109 DIR_TEST_TOOLS, // Directory where unit test tools reside. 113 DIR_TEST_TOOLS, // Directory where unit test tools reside.
110 114
111 PATH_END 115 PATH_END
112 }; 116 };
113 117
114 // 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.
115 void RegisterPathProvider(); 119 void RegisterPathProvider();
116 120
117 } // namespace chrome 121 } // namespace chrome
118 122
119 #endif // CHROME_COMMON_CHROME_PATHS_H__ 123 #endif // CHROME_COMMON_CHROME_PATHS_H__
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698