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

Unified Diff: chrome/browser/chromeos/policy/consumer_management_notifier.h

Issue 2230533002: Delete dead consumer enrollment code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. 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: chrome/browser/chromeos/policy/consumer_management_notifier.h
diff --git a/chrome/browser/chromeos/policy/consumer_management_notifier.h b/chrome/browser/chromeos/policy/consumer_management_notifier.h
deleted file mode 100644
index e107b7f0cfcd5d0b38d47e2ee5ae1cc20605002b..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/policy/consumer_management_notifier.h
+++ /dev/null
@@ -1,68 +0,0 @@
-// 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 CHROME_BROWSER_CHROMEOS_POLICY_CONSUMER_MANAGEMENT_NOTIFIER_H_
-#define CHROME_BROWSER_CHROMEOS_POLICY_CONSUMER_MANAGEMENT_NOTIFIER_H_
-
-#include <string>
-
-#include "base/callback_forward.h"
-#include "base/macros.h"
-#include "base/memory/weak_ptr.h"
-#include "chrome/browser/chromeos/policy/consumer_management_service.h"
-#include "components/keyed_service/core/keyed_service.h"
-
-class Profile;
-
-namespace policy {
-
-class ConsumerManagementStage;
-
-// ConsumerManagementNotifier observes ConsumerManagementService and shows
-// a desktop notification to the device owner if consumer enrollment or
-// unenrollment suceeds or fails.
-class ConsumerManagementNotifier
- : public KeyedService,
- public ConsumerManagementService::Observer {
- public:
- ConsumerManagementNotifier(
- Profile* profile,
- ConsumerManagementService* consumer_management_service);
- ~ConsumerManagementNotifier() override;
-
- void Shutdown() override;
-
- // ConsumerManagementService::Observer:
- void OnConsumerManagementStatusChanged() override;
-
- private:
- // Shows a notification based on |stage|.
- void ShowNotification(const ConsumerManagementStage& stage);
-
- // Shows a desktop notification.
- void ShowDesktopNotification(
- const std::string& notification_id,
- const std::string& notification_url,
- int title_message_id,
- int body_message_id,
- int button_label_message_id,
- const base::Closure& button_click_callback);
-
- // Opens the settings page.
- void OpenSettingsPage() const;
-
- // Opens the enrollment/unenrollment confirmation dialog in the settings page.
- void TryAgain() const;
-
- Profile* profile_;
- ConsumerManagementService* consumer_management_service_;
-
- base::WeakPtrFactory<ConsumerManagementNotifier> weak_ptr_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(ConsumerManagementNotifier);
-};
-
-} // namespace policy
-
-#endif // CHROME_BROWSER_CHROMEOS_POLICY_CONSUMER_MANAGEMENT_NOTIFIER_H_

Powered by Google App Engine
This is Rietveld 408576698