| Index: chrome/browser/views/frame/browser_frame.cc
|
| ===================================================================
|
| --- chrome/browser/views/frame/browser_frame.cc (revision 11945)
|
| +++ chrome/browser/views/frame/browser_frame.cc (working copy)
|
| @@ -8,6 +8,7 @@
|
| #include <shellapi.h>
|
|
|
| #include "chrome/browser/browser_list.h"
|
| +#include "chrome/browser/views/frame/browser_root_view.h"
|
| #include "chrome/browser/views/frame/browser_view.h"
|
| #include "chrome/browser/views/frame/glass_browser_frame_view.h"
|
| #include "chrome/browser/views/frame/opaque_browser_frame_view.h"
|
| @@ -200,6 +201,11 @@
|
| UpdateDWMFrame();
|
| }
|
|
|
| +
|
| +views::RootView* BrowserFrame::CreateRootView() {
|
| + return new BrowserRootView(this);
|
| +}
|
| +
|
| ///////////////////////////////////////////////////////////////////////////////
|
| // BrowserFrame, private:
|
|
|
|
|