Chromecast: moves cast_shell.pak output to assets/ directory.
[chromium-blink-merge.git] / chromecast / common / cast_paths.h
blobf228cd185c5f2f12d1a2105baa311bb6cd666720
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.
5 #ifndef CHROMECAST_COMMON_CAST_PATHS_H_
6 #define CHROMECAST_COMMON_CAST_PATHS_H_
8 // This file declares path keys for the chromecast module. These can be used
9 // with the PathService to access various special directories and files.
11 namespace chromecast {
13 enum {
14 PATH_START = 8000,
16 DIR_CAST_HOME, // Return a modified $HOME which works for both
17 // development use and the actual device.
19 FILE_CAST_CONFIG, // Config/preferences file path.
20 FILE_CAST_PAK, // cast_shell.pak file path.
21 PATH_END
24 // Call once to register the provider for the path keys defined above.
25 void RegisterPathProvider();
27 } // namespace chromecast
29 #endif // CHROMECAST_COMMON_CAST_PATHS_H_