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

Side by Side Diff: chromecast/common/cast_paths.h

Issue 223143003: Initial checkin of chromecast content embedder (cast_shell) and related build scripts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add an additional function in gl_surface_cast.cc Created 6 years, 8 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
(Empty)
1 // Copyright (c) 2014 Google Inc. 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.
4
5 #ifndef CHROMECAST_COMMON_CAST_PATHS_H_
6 #define CHROMECAST_COMMON_CAST_PATHS_H_
7
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.
10
11 namespace chromecast {
12
13 enum {
14 PATH_START = 8000,
15
16 DIR_CAST_HOME, // Return a modified $HOME which works for both
17 // development use and the actual device.
18
19 PATH_END
20 };
21
22 // Call once to register the provider for the path keys defined above.
23 void RegisterPathProvider();
24
25 } // namespace chromecast
26
27 #endif // CHROMECAST_COMMON_CAST_PATHS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698