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

Unified Diff: ui/views/controls/button/blue_button_unittest.cc

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 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 | « ui/views/controls/button/blue_button.cc ('k') | ui/views/controls/button/button.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/button/blue_button_unittest.cc
diff --git a/ui/views/controls/button/blue_button_unittest.cc b/ui/views/controls/button/blue_button_unittest.cc
deleted file mode 100644
index 908e747d24ca8ca99ce2650673ac2d760d12be96..0000000000000000000000000000000000000000
--- a/ui/views/controls/button/blue_button_unittest.cc
+++ /dev/null
@@ -1,59 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ui/views/controls/button/blue_button.h"
-
-#include "base/strings/string16.h"
-#include "base/strings/utf_string_conversions.h"
-#include "ui/gfx/canvas.h"
-#include "ui/gfx/skia_util.h"
-#include "ui/views/controls/button/label_button_border.h"
-#include "ui/views/test/views_test_base.h"
-
-namespace views {
-
-namespace {
-
-class TestBlueButton : public BlueButton {
- public:
- TestBlueButton() : BlueButton(NULL, base::ASCIIToUTF16("foo")) {}
- virtual ~TestBlueButton() {}
-
- using BlueButton::OnNativeThemeChanged;
-
- private:
- DISALLOW_COPY_AND_ASSIGN(TestBlueButton);
-};
-
-} // namespace
-
-typedef ViewsTestBase BlueButtonTest;
-
-TEST_F(BlueButtonTest, Border) {
- // Compared to a normal LabelButton...
- LabelButton button(NULL, base::ASCIIToUTF16("foo"));
- button.SetBoundsRect(gfx::Rect(gfx::Point(0, 0), button.GetPreferredSize()));
- gfx::Canvas button_canvas(button.bounds().size(), 1.0, true);
- button.border()->Paint(button, &button_canvas);
-
- // ... a special blue border should be used.
- TestBlueButton blue_button;
- blue_button.SetBoundsRect(gfx::Rect(gfx::Point(0, 0),
- blue_button.GetPreferredSize()));
- gfx::Canvas canvas(blue_button.bounds().size(), 1.0, true);
- blue_button.border()->Paint(blue_button, &canvas);
- EXPECT_EQ(button.GetText(), blue_button.GetText());
- EXPECT_FALSE(gfx::BitmapsAreEqual(button_canvas.ExtractImageRep().sk_bitmap(),
- canvas.ExtractImageRep().sk_bitmap()));
-
- // Make sure it's still used after the native theme "changes".
- blue_button.OnNativeThemeChanged(NULL);
- gfx::Canvas canvas2(blue_button.bounds().size(), 1.0, true);
- blue_button.border()->Paint(blue_button, &canvas2);
-
- EXPECT_TRUE(gfx::BitmapsAreEqual(canvas.ExtractImageRep().sk_bitmap(),
- canvas2.ExtractImageRep().sk_bitmap()));
-}
-
-} // namespace views
« no previous file with comments | « ui/views/controls/button/blue_button.cc ('k') | ui/views/controls/button/button.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698