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

Unified Diff: ash/common/system/locale/locale_notification_controller.h

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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: ash/common/system/locale/locale_notification_controller.h
diff --git a/ash/common/system/locale/locale_notification_controller.h b/ash/common/system/locale/locale_notification_controller.h
deleted file mode 100644
index b97c7ed8ab244698ce65f3997983aec51b4742f1..0000000000000000000000000000000000000000
--- a/ash/common/system/locale/locale_notification_controller.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2013 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 ASH_COMMON_SYSTEM_LOCALE_LOCALE_NOTIFICATION_CONTROLLER_H_
-#define ASH_COMMON_SYSTEM_LOCALE_LOCALE_NOTIFICATION_CONTROLLER_H_
-
-#include <string>
-
-#include "ash/public/interfaces/locale.mojom.h"
-#include "base/macros.h"
-#include "mojo/public/cpp/bindings/binding_set.h"
-
-namespace ash {
-
-// Observes the locale change and creates rich notification for the change.
-class LocaleNotificationController
- : public mojom::LocaleNotificationController {
- public:
- LocaleNotificationController();
- ~LocaleNotificationController() override;
-
- // Binds the mojom::LocaleNotificationController interface request to this
- // object.
- void BindRequest(mojom::LocaleNotificationControllerRequest request);
-
- private:
- // Overridden from mojom::LocaleNotificationController:
- void OnLocaleChanged(const std::string& cur_locale,
- const std::string& from_locale,
- const std::string& to_locale,
- const OnLocaleChangedCallback& callback) override;
-
- std::string cur_locale_;
- std::string from_locale_;
- std::string to_locale_;
-
- // Bindings for the LocaleNotificationController interface.
- mojo::BindingSet<mojom::LocaleNotificationController> bindings_;
-
- DISALLOW_COPY_AND_ASSIGN(LocaleNotificationController);
-};
-
-} // namespace ash
-
-#endif // ASH_COMMON_SYSTEM_LOCALE_LOCALE_NOTIFICATION_CONTROLLER_H_
« no previous file with comments | « ash/common/system/keyboard_brightness_control_delegate.h ('k') | ash/common/system/locale/locale_notification_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698