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

Side by Side Diff: chrome/browser/ui/views/apps/native_app_window_views_win.h

Issue 181503009: Rename BaseNativeAppWindowViews and NativeAppWindowViews (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase (native_app_window) Created 6 years, 9 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 2013 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_VIEWS_APPS_NATIVE_APP_WINDOW_VIEWS_WIN_H_
6 #define CHROME_BROWSER_UI_VIEWS_APPS_NATIVE_APP_WINDOW_VIEWS_WIN_H_
7
8 #include "chrome/browser/shell_integration.h"
9 #include "chrome/browser/ui/views/apps/native_app_window_views.h"
10
11 // Windows-specific parts of the views-backed native shell window implementation
12 // for packaged apps.
13 class NativeAppWindowViewsWin : public NativeAppWindowViews {
14 public:
15 NativeAppWindowViewsWin();
16
17 private:
18 void ActivateParentDesktopIfNecessary();
19
20 void OnShortcutInfoLoaded(
21 const ShellIntegration::ShortcutInfo& shortcut_info);
22
23 HWND GetNativeAppWindowHWND() const;
24
25 // Overridden from NativeAppWindowViews:
26 virtual void OnBeforeWidgetInit(views::Widget::InitParams* init_params,
27 views::Widget* widget) OVERRIDE;
28 virtual void InitializeDefaultWindow(
29 const apps::AppWindow::CreateParams& create_params) OVERRIDE;
30
31 // Overridden from ui::BaseWindow:
32 virtual void Show() OVERRIDE;
33 virtual void Activate() OVERRIDE;
34
35 // Overridden from apps::NativeAppWindow:
36 virtual void UpdateShelfMenu() OVERRIDE;
37
38 base::WeakPtrFactory<NativeAppWindowViewsWin> weak_ptr_factory_;
39
40 // The Windows Application User Model ID identifying the app.
41 base::string16 app_model_id_;
42
43 DISALLOW_COPY_AND_ASSIGN(NativeAppWindowViewsWin);
44 };
45
46 #endif // CHROME_BROWSER_UI_VIEWS_APPS_NATIVE_APP_WINDOW_VIEWS_WIN_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/apps/native_app_window_views.cc ('k') | chrome/browser/ui/views/apps/native_app_window_views_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698