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

Side by Side Diff: chrome/common/icon_messages_unittest.cc

Issue 6672065: Support touch icon in FaviconHelper (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reset candidates when FaviconURL is updated Created 9 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/history/history_types.h"
6 #include "chrome/common/icon_messages.h"
7 #include "testing/gtest/include/gtest/gtest.h"
8
9 // Tests the IconType definition
10 TEST(IconMessagesTest, IconTypeDefinition) {
11 EXPECT_EQ(static_cast<history::IconType>(FAVICON), history::FAVICON);
12 EXPECT_EQ(static_cast<history::IconType>(TOUCH_ICON), history::TOUCH_ICON);
13 EXPECT_EQ(static_cast<history::IconType>(TOUCH_PRECOMPOSED_ICON),
14 history::TOUCH_PRECOMPOSED_ICON);
15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698