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

Side by Side Diff: chrome/browser/tab_contents/constrained_window.h

Issue 159780: Add support for constrained windows on os x, based on Avi's GTMWindowSheetController. (Closed)
Patch Set: Merge with ToT Created 11 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
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_TAB_CONTENTS_CONSTRAINED_WINDOW_H_ 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_CONSTRAINED_WINDOW_H_
6 #define CHROME_BROWSER_TAB_CONTENTS_CONSTRAINED_WINDOW_H_ 6 #define CHROME_BROWSER_TAB_CONTENTS_CONSTRAINED_WINDOW_H_
7 7
8 #include "chrome/common/page_transition_types.h" 8 #include "chrome/common/page_transition_types.h"
9 #include "webkit/glue/window_open_disposition.h" 9 #include "webkit/glue/window_open_disposition.h"
10 10
11 // The different platform specific subclasses use different delegates for their 11 // The different platform specific subclasses use different delegates for their
12 // dialogs. 12 // dialogs.
13 #if defined(OS_WIN) 13 #if defined(OS_WIN)
14 namespace views { 14 namespace views {
15 class WindowDelegate; 15 class WindowDelegate;
16 } 16 }
17 typedef views::WindowDelegate ConstrainedWindowDelegate; 17 typedef views::WindowDelegate ConstrainedWindowDelegate;
18 #elif defined(OS_LINUX) 18 #elif defined(OS_LINUX)
19 class ConstrainedWindowGtkDelegate; 19 class ConstrainedWindowGtkDelegate;
20 typedef ConstrainedWindowGtkDelegate ConstrainedWindowDelegate; 20 typedef ConstrainedWindowGtkDelegate ConstrainedWindowDelegate;
21 #elif defined(OS_MACOSX) 21 #elif defined(OS_MACOSX)
22 // TODO(port): Change this type when Mac gets ConstrainedWindows. It is here 22 class ConstrainedWindowMacDelegate;
23 // only to make things compile. There is no user or consumer of this type. 23 typedef ConstrainedWindowMacDelegate ConstrainedWindowDelegate;
24 typedef void* ConstrainedWindowDelegate;
25 #endif 24 #endif
26 25
27 class TabContents; 26 class TabContents;
28 27
29 /////////////////////////////////////////////////////////////////////////////// 28 ///////////////////////////////////////////////////////////////////////////////
30 // ConstrainedWindow 29 // ConstrainedWindow
31 // 30 //
32 // This interface represents a window that is constrained to a TabContents' 31 // This interface represents a window that is constrained to a TabContents'
33 // bounds. 32 // bounds.
34 // 33 //
35 class ConstrainedWindow { 34 class ConstrainedWindow {
36 public: 35 public:
37 // Create a Constrained Window that contains a platform specific client 36 // Create a Constrained Window that contains a platform specific client
38 // area. Typical uses include the HTTP Basic Auth prompt. The caller must 37 // area. Typical uses include the HTTP Basic Auth prompt. The caller must
39 // provide a delegate to describe the content area and to respond to events. 38 // provide a delegate to describe the content area and to respond to events.
40 static ConstrainedWindow* CreateConstrainedDialog( 39 static ConstrainedWindow* CreateConstrainedDialog(
41 TabContents* owner, 40 TabContents* owner,
42 ConstrainedWindowDelegate* delegate); 41 ConstrainedWindowDelegate* delegate);
43 42
44 // Closes the Constrained Window. 43 // Closes the Constrained Window.
45 virtual void CloseConstrainedWindow() = 0; 44 virtual void CloseConstrainedWindow() = 0;
46 }; 45 };
47 46
48 #endif // CHROME_BROWSER_TAB_CONTENTS_CONSTRAINED_WINDOW_H_ 47 #endif // CHROME_BROWSER_TAB_CONTENTS_CONSTRAINED_WINDOW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698