Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(983)

Unified Diff: chrome/browser/ui/views/frame/browser_non_client_frame_view_factory_mac.mm

Issue 1019023002: MacViews: Implement non-client frame view (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@wrench-menu
Patch Set: Use Yosemite colors Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/frame/browser_non_client_frame_view_factory_mac.mm
diff --git a/chrome/browser/ui/views/frame/browser_non_client_frame_view_factory_mac.mm b/chrome/browser/ui/views/frame/browser_non_client_frame_view_factory_mac.mm
index 9beb41007385e3b6bf800c3f822421eb77dfa9ea..d5e9a96c77534ed1eb6a23bbaab6a9b126e6f880 100644
--- a/chrome/browser/ui/views/frame/browser_non_client_frame_view_factory_mac.mm
+++ b/chrome/browser/ui/views/frame/browser_non_client_frame_view_factory_mac.mm
@@ -2,13 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/browser/ui/views/frame/opaque_browser_frame_view.h"
+#include "chrome/browser/ui/views/frame/browser_non_client_frame_view_mac.h"
namespace chrome {
BrowserNonClientFrameView* CreateBrowserNonClientFrameView(
BrowserFrame* frame, BrowserView* browser_view) {
- return new OpaqueBrowserFrameView(frame, browser_view);
+ return new BrowserNonClientFrameViewMac(frame, browser_view);
}
} // namespace chrome

Powered by Google App Engine
This is Rietveld 408576698