summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/views/apps/chrome_shell_window_delegate_views.cc
blob: 4af6578da726ce718e1feb5e8177925a93cd37d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2013 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/apps/chrome_shell_window_delegate.h"

#include "chrome/browser/ui/views/apps/native_app_window_views.h"

// static
apps::NativeAppWindow* ChromeShellWindowDelegate::CreateNativeAppWindowImpl(
    apps::ShellWindow* shell_window,
    const apps::ShellWindow::CreateParams& params) {
  NativeAppWindowViews* window = new NativeAppWindowViews;
  window->Init(shell_window, params);
  return window;
}