| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/ui/gtk/reload_button_gtk.h" | 5 #include "chrome/browser/ui/gtk/reload_button_gtk.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "chrome/app/chrome_command_ids.h" | 10 #include "chrome/app/chrome_command_ids.h" |
| 11 #include "chrome/browser/ui/browser.h" | 11 #include "chrome/browser/ui/browser.h" |
| 12 #include "chrome/browser/ui/gtk/gtk_chrome_button.h" | 12 #include "chrome/browser/ui/gtk/gtk_chrome_button.h" |
| 13 #include "chrome/browser/ui/gtk/gtk_theme_service.h" | 13 #include "chrome/browser/ui/gtk/gtk_theme_service.h" |
| 14 #include "chrome/browser/ui/gtk/gtk_util.h" | 14 #include "chrome/browser/ui/gtk/gtk_util.h" |
| 15 #include "chrome/browser/ui/gtk/location_bar_view_gtk.h" | 15 #include "chrome/browser/ui/gtk/location_bar_view_gtk.h" |
| 16 #include "content/common/notification_source.h" | 16 #include "content/common/notification_source.h" |
| 17 #include "grit/generated_resources.h" | 17 #include "grit/generated_resources.h" |
| 18 #include "grit/theme_resources.h" | 18 #include "grit/theme_resources.h" |
| 19 #include "grit/theme_resources_standard.h" |
| 19 #include "ui/base/l10n/l10n_util.h" | 20 #include "ui/base/l10n/l10n_util.h" |
| 20 | 21 |
| 21 // The width of this button in GTK+ theme mode. The Stop and Refresh stock icons | 22 // The width of this button in GTK+ theme mode. The Stop and Refresh stock icons |
| 22 // can be different sizes; this variable is used to make sure that the button | 23 // can be different sizes; this variable is used to make sure that the button |
| 23 // doesn't change sizes when switching between the two. | 24 // doesn't change sizes when switching between the two. |
| 24 static int GtkButtonWidth = 0; | 25 static int GtkButtonWidth = 0; |
| 25 | 26 |
| 26 //////////////////////////////////////////////////////////////////////////////// | 27 //////////////////////////////////////////////////////////////////////////////// |
| 27 // ReloadButton, public: | 28 // ReloadButton, public: |
| 28 | 29 |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 gtk_chrome_button_set_use_gtk_rendering(GTK_CHROME_BUTTON(widget()), use_gtk); | 271 gtk_chrome_button_set_use_gtk_rendering(GTK_CHROME_BUTTON(widget()), use_gtk); |
| 271 } | 272 } |
| 272 | 273 |
| 273 void ReloadButtonGtk::OnDoubleClickTimer() { | 274 void ReloadButtonGtk::OnDoubleClickTimer() { |
| 274 ChangeMode(intended_mode_, false); | 275 ChangeMode(intended_mode_, false); |
| 275 } | 276 } |
| 276 | 277 |
| 277 void ReloadButtonGtk::OnStopToReloadTimer() { | 278 void ReloadButtonGtk::OnStopToReloadTimer() { |
| 278 ChangeMode(intended_mode_, true); | 279 ChangeMode(intended_mode_, true); |
| 279 } | 280 } |
| OLD | NEW |