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

Side by Side Diff: chrome/browser/chromeos/login/helper.cc

Issue 6263008: Move ResourceBundle, DataPack to ui/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "chrome/browser/chromeos/login/helper.h" 5 #include "chrome/browser/chromeos/login/helper.h"
6 6
7 #include "app/resource_bundle.h"
8 #include "chrome/browser/google/google_util.h" 7 #include "chrome/browser/google/google_util.h"
9 #include "gfx/canvas_skia.h" 8 #include "gfx/canvas_skia.h"
10 #include "googleurl/src/gurl.h" 9 #include "googleurl/src/gurl.h"
11 #include "grit/theme_resources.h" 10 #include "grit/theme_resources.h"
12 #include "third_party/skia/include/effects/SkGradientShader.h" 11 #include "third_party/skia/include/effects/SkGradientShader.h"
12 #include "ui/base/resource/resource_bundle.h"
13 #include "views/controls/button/menu_button.h" 13 #include "views/controls/button/menu_button.h"
14 #include "views/controls/button/native_button.h" 14 #include "views/controls/button/native_button.h"
15 #include "views/controls/label.h" 15 #include "views/controls/label.h"
16 #include "views/controls/textfield/textfield.h" 16 #include "views/controls/textfield/textfield.h"
17 #include "views/controls/throbber.h" 17 #include "views/controls/throbber.h"
18 #include "views/painter.h" 18 #include "views/painter.h"
19 #include "views/screen.h" 19 #include "views/screen.h"
20 #include "views/widget/widget.h" 20 #include "views/widget/widget.h"
21 #include "views/widget/widget_gtk.h" 21 #include "views/widget/widget_gtk.h"
22 22
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 gfx::Size preferred_size = NativeButton::GetPreferredSize(); 189 gfx::Size preferred_size = NativeButton::GetPreferredSize();
190 // Set minimal width. 190 // Set minimal width.
191 if (preferred_size.width() < kButtonMinWidth) 191 if (preferred_size.width() < kButtonMinWidth)
192 preferred_size.set_width(kButtonMinWidth); 192 preferred_size.set_width(kButtonMinWidth);
193 return preferred_size; 193 return preferred_size;
194 } 194 }
195 195
196 } // namespace login 196 } // namespace login
197 197
198 } // namespace chromeos 198 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/existing_user_controller.cc ('k') | chrome/browser/chromeos/login/language_switch_menu.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698