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

Unified Diff: chrome/browser/ui/cocoa/location_bar/plus_decoration.h

Issue 10823289: Adding "send to mobile" and "add bookmark" to the action box menu and wiring to their respective ac… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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/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_;

Powered by Google App Engine
This is Rietveld 408576698