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

Unified Diff: chrome/browser/ui/webui/options/chromeos/consumer_management_handler.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/ui/webui/options/chromeos/consumer_management_handler.h
diff --git a/chrome/browser/ui/webui/options/chromeos/consumer_management_handler.h b/chrome/browser/ui/webui/options/chromeos/consumer_management_handler.h
deleted file mode 100644
index a2c618c9a0e3e4f586b7368f434e8bc6e808438f..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/webui/options/chromeos/consumer_management_handler.h
+++ /dev/null
@@ -1,44 +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_UI_WEBUI_OPTIONS_CHROMEOS_CONSUMER_MANAGEMENT_HANDLER_H_
-#define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CONSUMER_MANAGEMENT_HANDLER_H_
-
-#include "base/compiler_specific.h"
-#include "base/macros.h"
-#include "base/values.h"
-#include "chrome/browser/ui/webui/options/options_ui.h"
-
-namespace policy {
-class ConsumerManagementService;
-}
-
-namespace chromeos {
-namespace options {
-
-// Consumer management overlay page UI handler.
-class ConsumerManagementHandler : public ::options::OptionsPageUIHandler {
- public:
- explicit ConsumerManagementHandler(
- policy::ConsumerManagementService* management_service);
- ~ConsumerManagementHandler() override;
-
- // OptionsPageUIHandler implementation.
- void GetLocalizedValues(base::DictionaryValue* localized_strings) override;
- void RegisterMessages() override;
-
- private:
- // Handles the button click events from the browser options page.
- void HandleEnrollConsumerManagement(const base::ListValue* args);
- void HandleUnenrollConsumerManagement(const base::ListValue* args);
-
- policy::ConsumerManagementService* management_service_;
-
- DISALLOW_COPY_AND_ASSIGN(ConsumerManagementHandler);
-};
-
-} // namespace options
-} // namespace chromeos
-
-#endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CONSUMER_MANAGEMENT_HANDLER_H_

Powered by Google App Engine
This is Rietveld 408576698