Index: ui/platform_window/win/win_window.cc |
diff --git a/ui/platform_window/win/win_window.cc b/ui/platform_window/win/win_window.cc |
index 718a4093936500a6af3d64c88916ecd4bc6cdad7..1e51a21e802bf7008b315bbdee41edf1af9e132d 100644 |
--- a/ui/platform_window/win/win_window.cc |
+++ b/ui/platform_window/win/win_window.cc |
@@ -12,6 +12,13 @@ |
namespace ui { |
+// static |
+scoped_ptr<PlatformWindow> PlatformWindow::Create( |
+ PlatformWindowDelegate* delegate, |
+ const gfx::Rect& bounds) { |
+ return new WinWindow(delegate, bounds); |
+} |
+ |
namespace { |
bool use_popup_as_root_window_for_test = false; |