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, 2 insertions, 6 deletions
diff --git a/content/browser/host_zoom_map_impl_unittest.cc b/content/browser/host_zoom_map_impl_unittest.cc index 9f51369..48a08cc 100644 --- a/content/browser/host_zoom_map_impl_unittest.cc +++ b/content/browser/host_zoom_map_impl_unittest.cc @@ -10,16 +10,14 @@ #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_(BrowserThread::UI, &message_loop_) { + HostZoomMapTest() : ui_thread_(content::BrowserThread::UI, &message_loop_) { } protected: MessageLoop message_loop_; - TestBrowserThread ui_thread_; + content::TestBrowserThread ui_thread_; }; TEST_F(HostZoomMapTest, GetSetZoomLevel) { @@ -31,5 +29,3 @@ 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 |