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

Unified Diff: content/browser/tab_contents/tab_contents_delegate.h

Issue 7880003: content: Move constrained window code from TabContents to TabContentsWrapper (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Attempt to fix views merge part 2 Created 9 years, 3 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
Index: content/browser/tab_contents/tab_contents_delegate.h
diff --git a/content/browser/tab_contents/tab_contents_delegate.h b/content/browser/tab_contents/tab_contents_delegate.h
index f0d6fc2694b887ac2c9c55cec037dd8959dd60ac..3a0cdadd4698430cb6a0f339b61a2f54a82435e6 100644
--- a/content/browser/tab_contents/tab_contents_delegate.h
+++ b/content/browser/tab_contents/tab_contents_delegate.h
@@ -130,12 +130,6 @@ class CONTENT_EXPORT TabContentsDelegate {
// or a panel window.
virtual bool IsPopupOrPanel(const TabContents* source) const;
- // Returns true if constrained windows should be focused. Default is true.
- virtual bool ShouldFocusConstrainedWindow();
-
- // Invoked prior to the TabContents showing a constrained window.
- virtual void WillShowConstrainedWindow(TabContents* source);
-
// Notification that the target URL has changed.
virtual void UpdateTargetURL(TabContents* source, int32 page_id,
const GURL& url);
@@ -199,12 +193,6 @@ class CONTENT_EXPORT TabContentsDelegate {
// Invoked when the page loses mouse capture.
virtual void LostCapture();
- // Changes the blocked state of the tab at |index|. TabContents are
- // considered blocked while displaying a tab modal dialog. During that time
- // renderer host will ignore any UI interaction within TabContent outside of
- // the currently displaying dialog.
- virtual void SetTabContentBlocked(TabContents* contents, bool blocked);
-
// Notification that |tab_contents| has gained focus.
virtual void TabContentsFocused(TabContents* tab_content);

Powered by Google App Engine
This is Rietveld 408576698