Chromium Code Reviews| Index: chrome/browser/ui/cocoa/location_bar/plus_decoration.h |
| diff --git a/chrome/browser/ui/cocoa/location_bar/plus_decoration.h b/chrome/browser/ui/cocoa/location_bar/plus_decoration.h |
| index 399418b570b47730ee9aeeaab6f71598f8168d64..2d73b96f240339939cd41d06a68a5f534aa97981 100644 |
| --- a/chrome/browser/ui/cocoa/location_bar/plus_decoration.h |
| +++ b/chrome/browser/ui/cocoa/location_bar/plus_decoration.h |
| @@ -11,6 +11,7 @@ |
| #include "chrome/browser/ui/cocoa/location_bar/image_decoration.h" |
| class Browser; |
| +class Profile; |
|
Scott Hess - ex-Googler
2012/08/13 18:54:43
Alphabetize.
beaudoin
2012/08/17 20:04:21
Profile is gone.
Done.
|
| class CommandUpdater; |
| class LocationBarViewMac; |
| @@ -21,7 +22,8 @@ class PlusDecoration : public ImageDecoration { |
| public: |
| PlusDecoration(LocationBarViewMac* owner, |
| CommandUpdater* command_updater, |
| - Browser* browser); |
| + Browser* browser, |
| + Profile* profile); |
| virtual ~PlusDecoration(); |
| // Implement |LocationBarDecoration|. |
| @@ -36,6 +38,7 @@ class PlusDecoration : public ImageDecoration { |
| CommandUpdater* command_updater_; // Weak, owned by Browser. |
| Browser* browser_; |
| + Profile* profile_; |
| // The string to show for a tooltip. |
| scoped_nsobject<NSString> tooltip_; |