| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 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/favicon/chrome_fallback_icon_client.h" | |
| 6 | |
| 7 #include "base/macros.h" | |
| 8 #include "testing/gtest/include/gtest/gtest.h" | |
| 9 | |
| 10 TEST(ChromeFallbackIconClientTest, GetFontNameList) { | |
| 11 ChromeFallbackIconClient client; | |
| 12 // Just ensure non-empty, otherwise not checking the actual font. | |
| 13 EXPECT_FALSE(client.GetFontNameList().empty()); | |
| 14 } | |
| OLD | NEW |