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

Unified Diff: ash/system/ime/tray_ime.h

Issue 843603004: Moves smart deploy UI into the IME tray. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Unsplit. Remove IME tray in Linux. Created 5 years, 11 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
« no previous file with comments | « ash/ash_chromeos_strings.grdp ('k') | ash/system/ime/tray_ime.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/ime/tray_ime.h
diff --git a/ash/system/ime/tray_ime.h b/ash/system/ime/tray_ime.h
deleted file mode 100644
index 0e8fe217b15290ca77a615d6732af074c27d4be0..0000000000000000000000000000000000000000
--- a/ash/system/ime/tray_ime.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright (c) 2012 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_SYSTEM_IME_TRAY_IME_H_
-#define ASH_SYSTEM_IME_TRAY_IME_H_
-
-#include "ash/system/ime/ime_observer.h"
-#include "ash/system/tray/system_tray_item.h"
-
-namespace views {
-class Label;
-}
-
-namespace ash {
-struct IMEInfo;
-
-namespace tray {
-class IMEDefaultView;
-class IMEDetailedView;
-class IMENotificationView;
-}
-
-class TrayItemView;
-
-class TrayIME : public SystemTrayItem,
- public IMEObserver {
- public:
- explicit TrayIME(SystemTray* system_tray);
- ~TrayIME() override;
-
- private:
- void UpdateTrayLabel(const IMEInfo& info, size_t count);
-
- // Overridden from SystemTrayItem.
- views::View* CreateTrayView(user::LoginStatus status) override;
- views::View* CreateDefaultView(user::LoginStatus status) override;
- views::View* CreateDetailedView(user::LoginStatus status) override;
- void DestroyTrayView() override;
- void DestroyDefaultView() override;
- void DestroyDetailedView() override;
- void UpdateAfterLoginStatusChange(user::LoginStatus status) override;
- void UpdateAfterShelfAlignmentChange(ShelfAlignment alignment) override;
-
- // Overridden from IMEObserver.
- void OnIMERefresh() override;
-
- TrayItemView* tray_label_;
- tray::IMEDefaultView* default_;
- tray::IMEDetailedView* detailed_;
-
- DISALLOW_COPY_AND_ASSIGN(TrayIME);
-};
-
-} // namespace ash
-
-#endif // ASH_SYSTEM_IME_TRAY_IME_H_
« no previous file with comments | « ash/ash_chromeos_strings.grdp ('k') | ash/system/ime/tray_ime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698