OLD | NEW |
1 // Copyright (c) 2010 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 "base/message_loop.h" | 5 #include "base/message_loop.h" |
6 #include "chrome/browser/gtk/reload_button_gtk.h" | 6 #include "chrome/browser/gtk/reload_button_gtk.h" |
7 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
8 | 8 |
9 class ReloadButtonGtkTest : public testing::Test { | 9 class ReloadButtonGtkTest : public testing::Test { |
10 public: | 10 public: |
11 ReloadButtonGtkTest(); | 11 ReloadButtonGtkTest(); |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 gtk_button_clicked(GTK_BUTTON(reload_.widget())); | 136 gtk_button_clicked(GTK_BUTTON(reload_.widget())); |
137 reload_.ChangeMode(ReloadButtonGtk::MODE_STOP, false); | 137 reload_.ChangeMode(ReloadButtonGtk::MODE_STOP, false); |
138 set_mouse_hovered(true); | 138 set_mouse_hovered(true); |
139 reload_.ChangeMode(ReloadButtonGtk::MODE_RELOAD, false); | 139 reload_.ChangeMode(ReloadButtonGtk::MODE_RELOAD, false); |
140 | 140 |
141 // Now fire the stop-to-reload timer. This should reset the button. | 141 // Now fire the stop-to-reload timer. This should reset the button. |
142 loop_.RunAllPending(); | 142 loop_.RunAllPending(); |
143 CheckState(true, ReloadButtonGtk::MODE_RELOAD, ReloadButtonGtk::MODE_RELOAD, | 143 CheckState(true, ReloadButtonGtk::MODE_RELOAD, ReloadButtonGtk::MODE_RELOAD, |
144 false, false); | 144 false, false); |
145 } | 145 } |
OLD | NEW |