diff options
Diffstat (limited to 'content/browser/host_zoom_map_impl_unittest.cc')
-rw-r--r-- | content/browser/host_zoom_map_impl_unittest.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/content/browser/host_zoom_map_impl_unittest.cc b/content/browser/host_zoom_map_impl_unittest.cc index 48a08cc..9f51369 100644 --- a/content/browser/host_zoom_map_impl_unittest.cc +++ b/content/browser/host_zoom_map_impl_unittest.cc @@ -10,14 +10,16 @@ #include "content/public/test/test_browser_thread.h" #include "testing/gtest/include/gtest/gtest.h" +namespace content { + class HostZoomMapTest : public testing::Test { public: - HostZoomMapTest() : ui_thread_(content::BrowserThread::UI, &message_loop_) { + HostZoomMapTest() : ui_thread_(BrowserThread::UI, &message_loop_) { } protected: MessageLoop message_loop_; - content::TestBrowserThread ui_thread_; + TestBrowserThread ui_thread_; }; TEST_F(HostZoomMapTest, GetSetZoomLevel) { @@ -29,3 +31,5 @@ TEST_F(HostZoomMapTest, GetSetZoomLevel) { EXPECT_DOUBLE_EQ(host_zoom_map.GetZoomLevel("normal.com"), 0); EXPECT_DOUBLE_EQ(host_zoom_map.GetZoomLevel("zoomed.com"), zoomed); } + +} // namespace content |