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

Side by Side Diff: ash/ime/infolist_window.cc

Issue 273223002: views: Make view::Views::GetPreferredSize() const. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to ToT Created 6 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/ime/infolist_window.h" 5 #include "ash/ime/infolist_window.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "ash/ime/candidate_window_constants.h" 10 #include "ash/ime/candidate_window_constants.h"
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 public: 87 public:
88 InfolistEntryView(const ui::InfolistEntry& entry, 88 InfolistEntryView(const ui::InfolistEntry& entry,
89 const gfx::FontList& title_font_list, 89 const gfx::FontList& title_font_list,
90 const gfx::FontList& description_font_list); 90 const gfx::FontList& description_font_list);
91 virtual ~InfolistEntryView(); 91 virtual ~InfolistEntryView();
92 92
93 void SetEntry(const ui::InfolistEntry& entry); 93 void SetEntry(const ui::InfolistEntry& entry);
94 94
95 private: 95 private:
96 // views::View implementation. 96 // views::View implementation.
97 virtual gfx::Size GetPreferredSize() OVERRIDE; 97 virtual gfx::Size GetPreferredSize() const OVERRIDE;
98 98
99 void UpdateBackground(); 99 void UpdateBackground();
100 100
101 ui::InfolistEntry entry_; 101 ui::InfolistEntry entry_;
102 102
103 // The title label. Owned by views hierarchy. 103 // The title label. Owned by views hierarchy.
104 views::Label* title_label_; 104 views::Label* title_label_;
105 105
106 // The description label. Owned by views hierarchy. 106 // The description label. Owned by views hierarchy.
107 views::Label* description_label_; 107 views::Label* description_label_;
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 show_hide_timer_.Stop(); 269 show_hide_timer_.Stop();
270 GetWidget()->Close(); 270 GetWidget()->Close();
271 } 271 }
272 272
273 void InfolistWindow::WindowClosing() { 273 void InfolistWindow::WindowClosing() {
274 show_hide_timer_.Stop(); 274 show_hide_timer_.Stop();
275 } 275 }
276 276
277 } // namespace ime 277 } // namespace ime
278 } // namespace ash 278 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698