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

Unified Diff: components/arc/arc_bridge_service.cc

Issue 2272813003: Add ARC++ specific fields to launch data for specific apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 4 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: components/arc/arc_bridge_service.cc
diff --git a/components/arc/arc_bridge_service.cc b/components/arc/arc_bridge_service.cc
index 72607b56afcb19d6df20d3e0cd4fd156de7c227f..6fd88f3790ce6c0fbb6f56a012fd402a53bab242 100644
--- a/components/arc/arc_bridge_service.cc
+++ b/components/arc/arc_bridge_service.cc
@@ -52,6 +52,13 @@ bool ArcBridgeService::GetEnabled(const base::CommandLine* command_line) {
base::FeatureList::IsEnabled(kArcEnabledFeature);
}
+// static
+bool ArcBridgeService::IsArcAvailable() {
+ // TODO(rkc): Check the chromeos::switches::kArcAvailable switch once
+ // https://codereview.chromium.org/2266123002/ has landed.
Luis Héctor Chávez 2016/08/24 15:06:24 This has landed :)
rkc 2016/08/24 20:02:36 Acknowledged.
+ return false;
+}
+
void ArcBridgeService::AddObserver(Observer* observer) {
DCHECK(CalledOnValidThread());
observer_list_.AddObserver(observer);

Powered by Google App Engine
This is Rietveld 408576698