[AiS] Mac AiS on two lines
[chromium-blink-merge.git] / chrome / browser / ui / scoped_tabbed_browser_displayer.cc
blob05fac0c37507f842df5720dcb43f864fc325ce2f
1 // Copyright 2013 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.
5 #include "chrome/browser/ui/scoped_tabbed_browser_displayer.h"
7 #include "chrome/browser/ui/browser.h"
8 #include "chrome/browser/ui/browser_finder.h"
9 #include "chrome/browser/ui/browser_window.h"
11 namespace chrome {
13 ScopedTabbedBrowserDisplayer::ScopedTabbedBrowserDisplayer(
14 Profile* profile,
15 HostDesktopType type) {
16 browser_ = FindTabbedBrowser(profile, false, type);
17 if (!browser_)
18 browser_ = new Browser(Browser::CreateParams(profile, type));
21 ScopedTabbedBrowserDisplayer::~ScopedTabbedBrowserDisplayer() {
22 browser_->window()->Show();
25 } // namespace chrome