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

Side by Side Diff: chrome/browser/ui/extensions/native_shell_window.h

Issue 11205004: Fix bug 145175: [Win] Frameless app windows are not resizable if no draggable region is specified (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make new method pure virtual Created 8 years, 2 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_EXTENSIONS_NATIVE_SHELL_WINDOW_H_ 5 #ifndef CHROME_BROWSER_UI_EXTENSIONS_NATIVE_SHELL_WINDOW_H_
6 #define CHROME_BROWSER_UI_EXTENSIONS_NATIVE_SHELL_WINDOW_H_ 6 #define CHROME_BROWSER_UI_EXTENSIONS_NATIVE_SHELL_WINDOW_H_
7 7
8 #include "chrome/browser/ui/extensions/shell_window.h" 8 #include "chrome/browser/ui/extensions/shell_window.h"
9 #include "chrome/browser/ui/base_window.h" 9 #include "chrome/browser/ui/base_window.h"
10 10
(...skipping 17 matching lines...) Expand all
28 virtual void UpdateWindowIcon() = 0; 28 virtual void UpdateWindowIcon() = 0;
29 29
30 // Called when the title of the window changes. 30 // Called when the title of the window changes.
31 virtual void UpdateWindowTitle() = 0; 31 virtual void UpdateWindowTitle() = 0;
32 32
33 // Allows the window to handle unhandled keyboard messages coming back from 33 // Allows the window to handle unhandled keyboard messages coming back from
34 // the renderer. 34 // the renderer.
35 virtual void HandleKeyboardEvent( 35 virtual void HandleKeyboardEvent(
36 const content::NativeWebKeyboardEvent& event) = 0; 36 const content::NativeWebKeyboardEvent& event) = 0;
37 37
38 // Called when the RenderViewHost is changed.
Ben Goodger (Google) 2012/10/23 16:13:35 this line is useless
39 // TODO(jianli): once http://crbug.com/123007 is fixed, we'll no longer need
40 // this.
41 virtual void RenderViewHostChanged() = 0;
42
38 virtual ~NativeShellWindow() {} 43 virtual ~NativeShellWindow() {}
39 }; 44 };
40 45
41 #endif // CHROME_BROWSER_UI_EXTENSIONS_NATIVE_SHELL_WINDOW_H_ 46 #endif // CHROME_BROWSER_UI_EXTENSIONS_NATIVE_SHELL_WINDOW_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/extensions/shell_window_cocoa.h ('k') | chrome/browser/ui/extensions/shell_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698