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

Unified Diff: chrome/browser/chromeos/arc/arc_service_launcher.cc

Issue 2136023002: arc: Abort booting ARC if the device is critically low on disk space. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 4 years, 5 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: chrome/browser/chromeos/arc/arc_service_launcher.cc
diff --git a/chrome/browser/chromeos/arc/arc_service_launcher.cc b/chrome/browser/chromeos/arc/arc_service_launcher.cc
index 051f163f11916483b72babd3718475a7059b37b8..396f9e66ffc3bebe4c20ab02062fee0f85ec61e9 100644
--- a/chrome/browser/chromeos/arc/arc_service_launcher.cc
+++ b/chrome/browser/chromeos/arc/arc_service_launcher.cc
@@ -7,6 +7,7 @@
#include "base/bind.h"
#include "base/memory/ptr_util.h"
#include "chrome/browser/chromeos/arc/arc_auth_service.h"
+#include "chrome/browser/chromeos/arc/arc_boot_error_notification.h"
#include "chrome/browser/chromeos/arc/arc_downloads_watcher_service.h"
#include "chrome/browser/chromeos/arc/arc_policy_bridge.h"
#include "chrome/browser/chromeos/arc/arc_process_service.h"
@@ -46,6 +47,8 @@ void ArcServiceLauncher::Initialize() {
arc_service_manager_->arc_bridge_service()));
arc_service_manager_->AddService(base::MakeUnique<GpuArcVideoServiceHost>(
arc_service_manager_->arc_bridge_service()));
+ arc_service_manager_->AddService(base::MakeUnique<ArcBootErrorNotification>(
hidehiko 2016/07/14 07:39:40 I think this is listed in lexicographical order?
Shuhei Takahashi 2016/07/14 08:44:27 Well, mostly :) Done.
+ arc_service_manager_->arc_bridge_service()));
// Detect availability.
chromeos::SessionManagerClient* session_manager_client =

Powered by Google App Engine
This is Rietveld 408576698