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

Unified Diff: chrome/browser/ui/cocoa/tabs/media_indicator_button_cocoa.h

Issue 1407103008: mac: Stop using __weak. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/tabs/media_indicator_button_cocoa.h
diff --git a/chrome/browser/ui/cocoa/tabs/media_indicator_button_cocoa.h b/chrome/browser/ui/cocoa/tabs/media_indicator_button_cocoa.h
index 8216bc8430b01b38c48c03ed70032225408d6d23..d8bfec8ba69c7871f41911cc228a4da466036e17 100644
--- a/chrome/browser/ui/cocoa/tabs/media_indicator_button_cocoa.h
+++ b/chrome/browser/ui/cocoa/tabs/media_indicator_button_cocoa.h
@@ -43,14 +43,14 @@ class AnimationDelegate;
// Target and action invoked whenever a fade-in/out animation completes. This
// is used by TabController to layout the TabView after an indicator has
// completely faded out.
- __weak id animationDoneTarget_;
+ id animationDoneTarget_; // weak
SEL animationDoneAction_;
// The image to show when the mouse hovers over the button.
base::scoped_nsobject<NSImage> affordanceImage_;
// Target and action invoked whenever an enabled button is clicked.
- __weak id clickTarget_;
+ id clickTarget_; // weak
SEL clickAction_;
}

Powered by Google App Engine
This is Rietveld 408576698