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

Unified Diff: trunk/src/chrome/browser/ui/views/apps/native_app_window_views.h

Issue 163963002: Revert 251029 "Move Windows-specific code into NativeAppWindowVi..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | trunk/src/chrome/browser/ui/views/apps/native_app_window_views.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/chrome/browser/ui/views/apps/native_app_window_views.h
===================================================================
--- trunk/src/chrome/browser/ui/views/apps/native_app_window_views.h (revision 251061)
+++ trunk/src/chrome/browser/ui/views/apps/native_app_window_views.h (working copy)
@@ -18,6 +18,10 @@
#include "ui/views/widget/widget_delegate.h"
#include "ui/views/widget/widget_observer.h"
+#if defined(OS_WIN)
+#include "chrome/browser/shell_integration.h"
+#endif
+
#if defined(USE_ASH)
namespace ash {
class ImmersiveFullscreenController;
@@ -79,16 +83,14 @@
const extensions::Extension* extension() {
return shell_window_->extension();
}
- const views::Widget* window() const { return window_; }
- virtual void InitializeDefaultWindow(
- const apps::ShellWindow::CreateParams& create_params);
- virtual void InitializePanelWindow(
- const apps::ShellWindow::CreateParams& create_params);
-
private:
friend class ShapedAppWindowTargeterTest;
+ void InitializeDefaultWindow(
+ const apps::ShellWindow::CreateParams& create_params);
+ void InitializePanelWindow(
+ const apps::ShellWindow::CreateParams& create_params);
void OnViewWasResized();
bool ShouldUseChromeStyleFrame() const;
@@ -96,6 +98,12 @@
// Caller owns the returned object.
apps::ShellWindowFrameView* CreateShellWindowFrameView();
+#if defined(OS_WIN)
+ void OnShortcutInfoLoaded(
+ const ShellIntegration::ShortcutInfo& shortcut_info);
+ HWND GetNativeAppWindowHWND() const;
+#endif
+
// ui::BaseWindow implementation.
virtual bool IsActive() const OVERRIDE;
virtual bool IsMaximized() const OVERRIDE;
« no previous file with comments | « no previous file | trunk/src/chrome/browser/ui/views/apps/native_app_window_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698