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

Unified Diff: chrome/browser/chromeos/login/eula_view.cc

Issue 5180002: Adjust default font sizes for new hand hinted fonts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: introduce CROS_HAND_HINTED_FONTS define, fix oobe/login buttons, dropdowns Created 10 years, 1 month 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: chrome/browser/chromeos/login/eula_view.cc
diff --git a/chrome/browser/chromeos/login/eula_view.cc b/chrome/browser/chromeos/login/eula_view.cc
index 204ec6e69ad1e0b46f78a29bc05c4cf76db0f1ea..62ea4afcf9be0738776b532f94064a5153640242 100644
--- a/chrome/browser/chromeos/login/eula_view.cc
+++ b/chrome/browser/chromeos/login/eula_view.cc
@@ -37,7 +37,6 @@
#include "grit/locale_settings.h"
#include "grit/theme_resources.h"
#include "views/controls/button/checkbox.h"
-#include "views/controls/button/native_button.h"
#include "views/controls/label.h"
#include "views/controls/throbber.h"
#include "views/grid_layout.h"
@@ -394,10 +393,10 @@ void EulaView::Init() {
layout->AddView(system_security_settings_link_);
- back_button_ = new views::NativeButton(this, std::wstring());
+ back_button_ = new login::WideButton(this, std::wstring());
layout->AddView(back_button_);
- continue_button_ = new views::NativeButton(this, std::wstring());
+ continue_button_ = new login::WideButton(this, std::wstring());
layout->AddView(continue_button_);
layout->AddPaddingRow(0, kPadding);

Powered by Google App Engine
This is Rietveld 408576698