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

Unified Diff: chrome/browser/ui/views/bookmarks/bookmark_sync_promo_view_unittest.cc

Issue 24012002: Move Range code to gfx. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: d Created 7 years, 3 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
Index: chrome/browser/ui/views/bookmarks/bookmark_sync_promo_view_unittest.cc
diff --git a/chrome/browser/ui/views/bookmarks/bookmark_sync_promo_view_unittest.cc b/chrome/browser/ui/views/bookmarks/bookmark_sync_promo_view_unittest.cc
index 34ee686043ad177aaf996a6ad469ec376e3943ca..02459bfc284f32ef5f15a827d4cec0f2efca94c0 100644
--- a/chrome/browser/ui/views/bookmarks/bookmark_sync_promo_view_unittest.cc
+++ b/chrome/browser/ui/views/bookmarks/bookmark_sync_promo_view_unittest.cc
@@ -10,7 +10,7 @@
#include "chrome/browser/ui/bookmarks/bookmark_bubble_delegate.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/events/event_constants.h"
-#include "ui/base/range/range.h"
+#include "ui/gfx/range/range.h"
class BookmarkSyncPromoViewTest : public BookmarkBubbleDelegate,
public testing::Test {
@@ -36,7 +36,7 @@ TEST_F(BookmarkSyncPromoViewTest, SignInLink) {
// Simulate clicking the "Sign in" link.
views::StyledLabelListener* listener = sync_promo.get();
- listener->StyledLabelLinkClicked(ui::Range(), ui::EF_NONE);
+ listener->StyledLabelLinkClicked(gfx::Range(), ui::EF_NONE);
EXPECT_EQ(1, sign_in_clicked_count_);
}

Powered by Google App Engine
This is Rietveld 408576698