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

Unified Diff: chrome/browser/ui/cocoa/tab_contents/overlayable_contents_controller.h

Issue 1221173003: [Mac] Inform reference counted objects that hold a weak Browser* when the Browser is being destroye… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove dealloc override. Created 5 years, 5 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: chrome/browser/ui/cocoa/tab_contents/overlayable_contents_controller.h
diff --git a/chrome/browser/ui/cocoa/tab_contents/overlayable_contents_controller.h b/chrome/browser/ui/cocoa/tab_contents/overlayable_contents_controller.h
index ceb452a34bcf84d7990eed25a19e1c738a345d63..cd68587a090db6aab1e1aed1da0e2465d8f3c6fc 100644
--- a/chrome/browser/ui/cocoa/tab_contents/overlayable_contents_controller.h
+++ b/chrome/browser/ui/cocoa/tab_contents/overlayable_contents_controller.h
@@ -8,13 +8,6 @@
#import <Cocoa/Cocoa.h>
#include "base/mac/scoped_nsobject.h"
-#include "base/memory/scoped_ptr.h"
-
-class Browser;
-
-namespace content {
-class WebContents;
-}
// OverlayableContentsController is an obsolete wrapper holding the view where a
// tab's WebContents is displayed. In the old Chrome Instant implementation it
@@ -31,7 +24,7 @@ class WebContents;
@property(readonly, nonatomic) NSView* activeContainer;
// Initialization.
-- (id)initWithBrowser:(Browser*)browser;
+- (id)init;
tapted 2015/07/06 07:26:18 this is now an override, so no need to redeclare
jackhou1 2015/07/07 03:27:27 Done.
@end

Powered by Google App Engine
This is Rietveld 408576698