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

Unified Diff: ash/common/system/tray/label_tray_view.h

Issue 2732813002: chromeos: Move files in //ash/common to //ash, part 1 (Closed)
Patch Set: rebase 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
« no previous file with comments | « ash/common/system/tray/ime_info.cc ('k') | ash/common/system/tray/label_tray_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/tray/label_tray_view.h
diff --git a/ash/common/system/tray/label_tray_view.h b/ash/common/system/tray/label_tray_view.h
deleted file mode 100644
index f0781cbe452065660b7c08dc36f69fe423284ec0..0000000000000000000000000000000000000000
--- a/ash/common/system/tray/label_tray_view.h
+++ /dev/null
@@ -1,37 +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_COMMON_SYSTEM_TRAY_LABEL_TRAY_VIEW_H_
-#define ASH_COMMON_SYSTEM_TRAY_LABEL_TRAY_VIEW_H_
-
-#include "base/macros.h"
-#include "base/strings/string16.h"
-#include "ui/views/view.h"
-
-namespace ash {
-
-class ViewClickListener;
-
-// View for simple information in tray. Automatically hides when message is
-// empty. Supports multiline messages.
-
-class LabelTrayView : public views::View {
- public:
- LabelTrayView(ViewClickListener* click_listener, int icon_resource_id);
- ~LabelTrayView() override;
- void SetMessage(const base::string16& message);
-
- private:
- views::View* CreateChildView(const base::string16& message) const;
-
- ViewClickListener* click_listener_;
- int icon_resource_id_;
- base::string16 message_;
-
- DISALLOW_COPY_AND_ASSIGN(LabelTrayView);
-};
-
-} // namespace ash
-
-#endif // ASH_COMMON_SYSTEM_TRAY_LABEL_TRAY_VIEW_H_
« no previous file with comments | « ash/common/system/tray/ime_info.cc ('k') | ash/common/system/tray/label_tray_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698