Index: content/browser/host_zoom_map_impl_unittest.cc |
diff --git a/content/browser/host_zoom_map_impl_unittest.cc b/content/browser/host_zoom_map_impl_unittest.cc |
index 48a08cc86f5322731ce8c04d25c914b9d3ff71bd..9f51369ee58944a5eaf6025a31ffae1097da63b6 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 |