Index: chrome/browser/ui/window_snapshot/window_snapshot_mac_unittest.mm |
diff --git a/chrome/browser/ui/window_snapshot/window_snapshot_mac_unittest.mm b/chrome/browser/ui/window_snapshot/window_snapshot_mac_unittest.mm |
index 0a1faa66095f897bbb480bdaf2a4f057060a40c3..43df1af8fa30347a902e9d5cf1ac2ca813f67952 100644 |
--- a/chrome/browser/ui/window_snapshot/window_snapshot_mac_unittest.mm |
+++ b/chrome/browser/ui/window_snapshot/window_snapshot_mac_unittest.mm |
@@ -11,7 +11,7 @@ |
#include "testing/platform_test.h" |
#include "ui/gfx/rect.h" |
-namespace browser { |
+namespace chrome { |
namespace { |
typedef PlatformTest GrabWindowSnapshotTest; |
@@ -30,8 +30,7 @@ TEST_F(GrabWindowSnapshotTest, TestGrabWindowSnapshot) { |
scoped_ptr<std::vector<unsigned char> > png_representation( |
new std::vector<unsigned char>); |
gfx::Rect bounds = gfx::Rect(0, 0, frame.size.width, frame.size.height); |
- EXPECT_TRUE(browser::GrabWindowSnapshot(window, png_representation.get(), |
- bounds)); |
+ EXPECT_TRUE(GrabWindowSnapshot(window, png_representation.get(), bounds)); |
// Copy png back into NSData object so we can make sure we grabbed a png. |
scoped_nsobject<NSData> image_data( |
@@ -47,4 +46,4 @@ TEST_F(GrabWindowSnapshotTest, TestGrabWindowSnapshot) { |
} |
} // namespace |
-} // namespace browser |
+} // namespace chrome |