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

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: nits 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 #pragma once 7 #pragma once
8 8
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. 96 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file.
97 FILE_LIBAVCODEC, // Full path to libavcodec media decoding 97 FILE_LIBAVCODEC, // Full path to libavcodec media decoding
98 // library. 98 // library.
99 FILE_LIBAVFORMAT, // Full path to libavformat media parsing 99 FILE_LIBAVFORMAT, // Full path to libavformat media parsing
100 // library. 100 // library.
101 FILE_LIBAVUTIL, // Full path to libavutil media utility library. 101 FILE_LIBAVUTIL, // Full path to libavutil media utility library.
102 FILE_RESOURCES_PACK, // Full path to the .pak file containing 102 FILE_RESOURCES_PACK, // Full path to the .pak file containing
103 // binary data (e.g., html files and images 103 // binary data (e.g., html files and images
104 // used by interal pages). 104 // used by interal pages).
105 DIR_RESOURCES_EXTENSION, // Full path to extension resources. 105 DIR_RESOURCES_EXTENSION, // Full path to extension resources.
106 #if defined(OS_CHROMEOS)
107 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos
108 // wallpapers reside.
109 #endif
106 110
107 // Valid only in development environment; TODO(darin): move these 111 // Valid only in development environment; TODO(darin): move these
108 DIR_GEN_TEST_DATA, // Directory where generated test data resides. 112 DIR_GEN_TEST_DATA, // Directory where generated test data resides.
109 DIR_TEST_DATA, // Directory where unit test data resides. 113 DIR_TEST_DATA, // Directory where unit test data resides.
110 DIR_TEST_TOOLS, // Directory where unit test tools reside. 114 DIR_TEST_TOOLS, // Directory where unit test tools reside.
111 115
112 PATH_END 116 PATH_END
113 }; 117 };
114 118
115 // Call once to register the provider for the path keys defined above. 119 // Call once to register the provider for the path keys defined above.
116 void RegisterPathProvider(); 120 void RegisterPathProvider();
117 121
118 } // namespace chrome 122 } // namespace chrome
119 123
120 #endif // CHROME_COMMON_CHROME_PATHS_H__ 124 #endif // CHROME_COMMON_CHROME_PATHS_H__
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698