Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Side by Side Diff: chrome/browser/ui/apps/chrome_app_window_delegate.h

Issue 436503002: Moved CreateNativeAppWindow from AppWindow::Delegate to AppsClient. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 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.
4
5 #ifndef CHROME_BROWSER_UI_APPS_CHROME_APP_WINDOW_DELEGATE_H_
6 #define CHROME_BROWSER_UI_APPS_CHROME_APP_WINDOW_DELEGATE_H_
7
8 #include "apps/app_window.h"
9
10 class ChromeAppWindowDelegate : public apps::AppWindow::Delegate {
11 public:
12 ChromeAppWindowDelegate();
13 virtual ~ChromeAppWindowDelegate();
14
15 private:
16 // apps::AppWindow::Delegate:
17 virtual apps::NativeAppWindow* CreateNativeAppWindow(
18 apps::AppWindow* window,
19 const apps::AppWindow::CreateParams& params) OVERRIDE;
20
21 // Implemented in platform specific code.
22 static apps::NativeAppWindow* CreateNativeAppWindowImpl(
23 apps::AppWindow* window,
24 const apps::AppWindow::CreateParams& params);
25
26 DISALLOW_COPY_AND_ASSIGN(ChromeAppWindowDelegate);
27 };
28
29 #endif // CHROME_BROWSER_UI_APPS_CHROME_APP_WINDOW_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/tabs/tabs_api.cc ('k') | chrome/browser/ui/apps/chrome_app_window_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698