summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/cocoa/apps/chrome_apps_client_cocoa.mm
blob: f2d8196f0d71ac795de16e1b676171068ba98221 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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"

#import "chrome/browser/ui/cocoa/apps/native_app_window_cocoa.h"

// static
apps::NativeAppWindow* ChromeAppsClient::CreateNativeAppWindowImpl(
    apps::AppWindow* app_window,
    const apps::AppWindow::CreateParams& params) {
  return new NativeAppWindowCocoa(app_window, params);
}