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

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

Issue 392018: Enforce that only one constrained window is displayed at once per tab. (Closed)
Patch Set: Set focus correctly on linux Created 11 years, 1 month 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
« no previous file with comments | « chrome/browser/login_prompt_gtk.cc ('k') | chrome/browser/tab_contents/tab_contents.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 // The different platform specific subclasses use different delegates for their 10 // The different platform specific subclasses use different delegates for their
(...skipping 17 matching lines...) Expand all
28 // ConstrainedWindow 28 // ConstrainedWindow
29 // 29 //
30 // This interface represents a window that is constrained to a TabContents' 30 // This interface represents a window that is constrained to a TabContents'
31 // bounds. 31 // bounds.
32 // 32 //
33 class ConstrainedWindow { 33 class ConstrainedWindow {
34 public: 34 public:
35 // Create a Constrained Window that contains a platform specific client 35 // Create a Constrained Window that contains a platform specific client
36 // area. Typical uses include the HTTP Basic Auth prompt. The caller must 36 // area. Typical uses include the HTTP Basic Auth prompt. The caller must
37 // provide a delegate to describe the content area and to respond to events. 37 // provide a delegate to describe the content area and to respond to events.
38 // The ConstrainedWindow should not be visible after creation.
38 static ConstrainedWindow* CreateConstrainedDialog( 39 static ConstrainedWindow* CreateConstrainedDialog(
39 TabContents* owner, 40 TabContents* owner,
40 ConstrainedWindowDelegate* delegate); 41 ConstrainedWindowDelegate* delegate);
41 42
43 // Makes the Constrained Window visible. Only one Constrained Window is shown
44 // at a time per tab.
45 virtual void ShowConstrainedWindow() = 0;
46
42 // Closes the Constrained Window. 47 // Closes the Constrained Window.
43 virtual void CloseConstrainedWindow() = 0; 48 virtual void CloseConstrainedWindow() = 0;
44 }; 49 };
45 50
46 #endif // CHROME_BROWSER_TAB_CONTENTS_CONSTRAINED_WINDOW_H_ 51 #endif // CHROME_BROWSER_TAB_CONTENTS_CONSTRAINED_WINDOW_H_
OLDNEW
« no previous file with comments | « chrome/browser/login_prompt_gtk.cc ('k') | chrome/browser/tab_contents/tab_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698