OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/browser/host_zoom_map_impl.h" | 5 #include "content/browser/host_zoom_map_impl.h" |
6 | 6 |
7 #include "base/memory/ref_counted.h" | 7 #include "base/memory/ref_counted.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
9 #include "content/public/browser/browser_thread.h" | 9 #include "content/public/browser/browser_thread.h" |
10 #include "content/public/test/test_browser_thread.h" | 10 #include "content/public/test/test_browser_thread.h" |
11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
12 | 12 |
13 namespace content { | 13 namespace content { |
14 | 14 |
15 class HostZoomMapTest : public testing::Test { | 15 class HostZoomMapTest : public testing::Test { |
16 public: | 16 public: |
17 HostZoomMapTest() : ui_thread_(BrowserThread::UI, &message_loop_) { | 17 HostZoomMapTest() : ui_thread_(BrowserThread::UI, &message_loop_) { |
18 } | 18 } |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 51 |
52 host_zoom_map.SetZoomLevelForHost("login", zoomed); | 52 host_zoom_map.SetZoomLevelForHost("login", zoomed); |
53 | 53 |
54 EXPECT_DOUBLE_EQ(0, | 54 EXPECT_DOUBLE_EQ(0, |
55 host_zoom_map.GetZoomLevelForHostAndScheme("chrome", "login")); | 55 host_zoom_map.GetZoomLevelForHostAndScheme("chrome", "login")); |
56 EXPECT_DOUBLE_EQ(zoomed, | 56 EXPECT_DOUBLE_EQ(zoomed, |
57 host_zoom_map.GetZoomLevelForHostAndScheme("http", "login")); | 57 host_zoom_map.GetZoomLevelForHostAndScheme("http", "login")); |
58 } | 58 } |
59 | 59 |
60 } // namespace content | 60 } // namespace content |
OLD | NEW |