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

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

// static
extensions::NativeAppWindow* ChromeAppsClient::CreateNativeAppWindowImpl(
    apps::AppWindow* app_window,
    const apps::AppWindow::CreateParams& params) {
  ChromeNativeAppWindowViews* window = new ChromeNativeAppWindowViews;
  window->Init(app_window, params);
  return window;
}