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

Side by Side Diff: chrome/browser/ui/views/frame/browser_window_factory.cc

Issue 697223003: MacViews: Get chrome/browser/ui/views/frame to compile (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@constrained
Patch Set: Add DCHECK Created 6 years, 1 month 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/ui/views/frame/browser_frame.h"
6 #include "chrome/browser/ui/views/frame/browser_view.h"
7 #include "chrome/browser/ui/views/frame/native_browser_frame_factory.h"
8 #include "chrome/grit/chromium_strings.h"
9 #include "ui/base/l10n/l10n_util.h"
10 #include "ui/views/widget/widget.h"
11
12 // static
13 BrowserWindow* BrowserWindow::CreateBrowserWindow(Browser* browser) {
14 // Create the view and the frame. The frame will attach itself via the view
15 // so we don't need to do anything with the pointer.
16 BrowserView* view = new BrowserView();
17 view->Init(browser);
18 (new BrowserFrame(view))->InitBrowserFrame();
19 view->GetWidget()->non_client_view()->SetAccessibleName(
20 l10n_util::GetStringUTF16(IDS_PRODUCT_NAME));
21 return view;
22 }
23
24 // static
25 chrome::HostDesktopType BrowserWindow::AdjustHostDesktopType(
26 chrome::HostDesktopType desktop_type) {
27 return NativeBrowserFrameFactory::AdjustHostDesktopType(desktop_type);
28 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/frame/browser_view.cc ('k') | chrome/browser/ui/views/frame/contents_web_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698