| Index: chrome/browser/chromeos/first_run/drive_first_run_controller.cc
|
| diff --git a/chrome/browser/chromeos/first_run/drive_first_run_controller.cc b/chrome/browser/chromeos/first_run/drive_first_run_controller.cc
|
| index 952694835666fce73f6eee99d252f310dd618667..0f477c598e50b8c5c387eed6c7fb67d7053e2128 100644
|
| --- a/chrome/browser/chromeos/first_run/drive_first_run_controller.cc
|
| +++ b/chrome/browser/chromeos/first_run/drive_first_run_controller.cc
|
| @@ -4,8 +4,6 @@
|
|
|
| #include "chrome/browser/chromeos/first_run/drive_first_run_controller.h"
|
|
|
| -#include "ash/shell.h"
|
| -#include "ash/system/tray/system_tray_notifier.h"
|
| #include "base/callback.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/message_loop/message_loop.h"
|
| @@ -378,8 +376,8 @@ void DriveFirstRunController::CleanUp() {
|
| void DriveFirstRunController::OnOfflineInit(bool success) {
|
| DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
|
| if (success) {
|
| - ash::Shell::GetInstance()->system_tray_notifier()
|
| - ->NotifyDriveOfflineEnabled();
|
| + // TODO(tengs): Show non-toast notification that offline files will now
|
| + // be synced.
|
| }
|
| FOR_EACH_OBSERVER(Observer, observer_list_, OnCompletion(success));
|
| CleanUp();
|
|
|