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

Unified 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 two missing files I forgot to add in the previous patch set. Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chromecast/common/cast_paths.h
diff --git a/chromecast/common/cast_paths.h b/chromecast/common/cast_paths.h
new file mode 100644
index 0000000000000000000000000000000000000000..04f3266557ac5363eae97c7ac887ff7e71aab6fa
--- /dev/null
+++ b/chromecast/common/cast_paths.h
@@ -0,0 +1,27 @@
+// Copyright 2014 The Chromium Authors. All Rights Reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROMECAST_COMMON_CAST_PATHS_H_
+#define CHROMECAST_COMMON_CAST_PATHS_H_
+
+// This file declares path keys for the chromecast module. These can be used
+// with the PathService to access various special directories and files.
+
+namespace chromecast {
+
+enum {
+ PATH_START = 8000,
+
+ DIR_CAST_HOME, // Return a modified $HOME which works for both
+ // development use and the actual device.
+
+ PATH_END
+};
+
+// Call once to register the provider for the path keys defined above.
+void RegisterPathProvider();
+
+} // namespace chromecast
+
+#endif // CHROMECAST_COMMON_CAST_PATHS_H_

Powered by Google App Engine
This is Rietveld 408576698