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

Unified Diff: ash/system/settings/tray_settings.cc

Issue 9703078: ash: Highlight the items in the uber-tray popup when hovering. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 9 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 | « no previous file | ash/system/tray/system_tray.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/settings/tray_settings.cc
diff --git a/ash/system/settings/tray_settings.cc b/ash/system/settings/tray_settings.cc
index 6354bc22d8c357a1c310e5aab4b98603abf3b738..3e3cabf909191c106a695df8d29ac8fb11d1ed81 100644
--- a/ash/system/settings/tray_settings.cc
+++ b/ash/system/settings/tray_settings.cc
@@ -45,20 +45,6 @@ class SettingsView : public views::View {
return true;
}
- virtual void OnMouseEntered(const views::MouseEvent& event) OVERRIDE {
- gfx::Font font = label_->font();
- label_->SetFont(font.DeriveFont(0,
- font.GetStyle() | gfx::Font::UNDERLINED));
- SchedulePaint();
- }
-
- virtual void OnMouseExited(const views::MouseEvent& event) OVERRIDE {
- gfx::Font font = label_->font();
- label_->SetFont(font.DeriveFont(0,
- font.GetStyle() & ~gfx::Font::UNDERLINED));
- SchedulePaint();
- }
-
private:
views::Label* label_;
« no previous file with comments | « no previous file | ash/system/tray/system_tray.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698