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

Unified Diff: chromecast/browser/android/apk/templates/BuildConfig.template

Issue 2874943002: [Chromecast] Add service for "displaying" cast web contents. (Closed)
Patch Set: [Chromecast] Add service for "displaying" cast web contents. Created 3 years, 7 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/browser/android/apk/templates/BuildConfig.template
diff --git a/chromecast/browser/android/apk/templates/BuildConfig.template b/chromecast/browser/android/apk/templates/BuildConfig.template
new file mode 100644
index 0000000000000000000000000000000000000000..4f8b551a091d2de03a1acf6e353e56e70221f834
--- /dev/null
+++ b/chromecast/browser/android/apk/templates/BuildConfig.template
@@ -0,0 +1,14 @@
+
+package org.chromium.chromecast.shell;
+
+public class BuildConfig {
+
+ // If true, run receiver apps in a service instead of an activity.
+ public static final boolean DISPLAY_WEB_CONTENTS_IN_SERVICE =
+#if defined(_DISPLAY_WEB_CONTENTS_IN_SERVICE)
+ true;
+#else
+ false;
+#endif
+
+}

Powered by Google App Engine
This is Rietveld 408576698