Index: ui/views/controls/progress_bar_unittest.cc |
diff --git a/ui/views/controls/progress_bar_unittest.cc b/ui/views/controls/progress_bar_unittest.cc |
index 71cdb208ac6df9b52341c6210e7eacf023661618..18796376178069505a6fe94f2c308b03feb1dcf7 100644 |
--- a/ui/views/controls/progress_bar_unittest.cc |
+++ b/ui/views/controls/progress_bar_unittest.cc |
@@ -2,17 +2,17 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "base/string_util.h" |
+#include "ui/views/controls/progress_bar.h" |
+ |
#include "base/utf_string_conversions.h" |
#include "testing/gtest/include/gtest/gtest.h" |
#include "ui/base/accessibility/accessible_view_state.h" |
-#include "ui/views/controls/progress_bar.h" |
namespace views { |
TEST(ProgressBarTest, TooltipTextProperty) { |
ProgressBar bar; |
- string16 tooltip = ASCIIToUTF16("Some text"); |
+ string16 tooltip; |
EXPECT_FALSE(bar.GetTooltipText(gfx::Point(), &tooltip)); |
EXPECT_EQ(string16(), tooltip); |
Peter Kasting
2012/10/15 19:03:10
If you do preserve your behavior change, this EXPE
|
string16 tooltip_text = ASCIIToUTF16("My progress"); |