OLD | NEW |
(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 } |
OLD | NEW |