summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/browser_win.cc
blob: c4181a863f42396d09b0611e0d12b5fac83edf71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/browser.h"

#include "base/win/metro.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser_finder.h"

namespace {

void NewMetroWindow(Browser* source_browser, Profile* profile) {
  typedef void (*FlipFrameWindows)();

  static FlipFrameWindows flip_window_fn = reinterpret_cast<FlipFrameWindows>(
      ::GetProcAddress(base::win::GetMetroModule(), "FlipFrameWindows"));
  DCHECK(flip_window_fn);

  Browser* browser = browser::FindTabbedBrowser(profile, false);
  if (!browser) {
    Browser::OpenEmptyWindow(profile);
    return;
  }

  browser->NewTab();

  if (browser != source_browser) {
    // Tell the metro_driver to flip our window. This causes the current
    // browser window to be hidden and the next window to be shown.
    flip_window_fn();
  }
}

}  // namespace

void Browser::NewWindow() {
  if (base::win::GetMetroModule()) {
    NewMetroWindow(this, profile_->GetOriginalProfile());
    return;
  }
  NewEmptyWindow(profile_->GetOriginalProfile());
}

void Browser::NewIncognitoWindow() {
  if (base::win::GetMetroModule()) {
    NewMetroWindow(this, profile_->GetOffTheRecordProfile());
    return;
  }
  NewEmptyWindow(profile_->GetOffTheRecordProfile());
}