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

Unified Diff: chrome/browser/ui/cocoa/web_intent_sheet_controller.mm

Issue 10534093: TabContentsWrapper -> TabContents, part 37. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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/web_intent_sheet_controller.mm
diff --git a/chrome/browser/ui/cocoa/web_intent_sheet_controller.mm b/chrome/browser/ui/cocoa/web_intent_sheet_controller.mm
index d6cdc595588b7b761263b719af40359964a1ca4f..eaa85a64b1cbeaade8b81a06cec06fecb4266e57 100644
--- a/chrome/browser/ui/cocoa/web_intent_sheet_controller.mm
+++ b/chrome/browser/ui/cocoa/web_intent_sheet_controller.mm
@@ -15,7 +15,7 @@
#include "chrome/browser/ui/cocoa/web_intent_picker_cocoa.h"
#include "chrome/browser/ui/intents/web_intent_picker_delegate.h"
#include "chrome/browser/ui/intents/web_intent_picker_model.h"
-#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
+#include "chrome/browser/ui/tab_contents/tab_contents.h"
#include "content/public/browser/web_contents_view.h"
#include "content/public/browser/web_contents.h"
#include "grit/generated_resources.h"
@@ -502,8 +502,8 @@ NSButton* CreateHyperlinkButton(NSString* title, const NSRect& frame) {
picker_->OnSheetDidEnd(sheet);
}
-- (void)setInlineDispositionTabContents:(TabContentsWrapper*)wrapper {
- contents_ = wrapper;
+- (void)setInlineDispositionTabContents:(TabContents*)tabContents {
+ contents_ = tabContents;
}
- (void)setInlineDispositionFrameSize:(NSSize)inlineContentSize {

Powered by Google App Engine
This is Rietveld 408576698