Chromium Code Reviews| Index: chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.h |
| diff --git a/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.h b/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.h |
| index 6c641e3de6b81c8f94e7d8aca92f6005f4106f76..fe194ed216f1b06cf71a5da0be7afc2b6600272b 100644 |
| --- a/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.h |
| +++ b/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.h |
| @@ -24,6 +24,7 @@ |
| class CommandUpdater; |
| class ContentSettingDecoration; |
| class EVBubbleDecoration; |
| +class GeneratedCreditCardDecoration; |
| class KeywordHintDecoration; |
| class LocationBarDecoration; |
| class LocationIconDecoration; |
| @@ -104,6 +105,10 @@ class LocationBarViewMac : public LocationBar, |
| // info bubble aims. |
| NSPoint GetPageInfoBubblePoint() const; |
| + // Get the point in window coordinates in the "generated cc" icon at which the |
| + // corresponding info bubble aims. |
| + NSPoint GetGeneratedCreditCardBubblePoint() const; |
| + |
| // When any image decorations change, call this to ensure everything is |
| // redrawn and laid out if necessary. |
| void OnDecorationsChanged(); |
| @@ -229,6 +234,10 @@ class LocationBarViewMac : public LocationBar, |
| // The voice search icon. |
| scoped_ptr<MicSearchDecoration> mic_search_decoration_; |
| + // Generated CC hint decoration. |
| + scoped_ptr<GeneratedCreditCardDecoration> |
| + generated_credit_card_decoration_; |
|
Scott Hess - ex-Googler
2013/10/31 20:23:19
Sure this can't fit on one line? Looks like it wo
groby-ooo-7-16
2013/10/31 22:55:47
Just so - done.
|
| + |
| Profile* profile_; |
| Browser* browser_; |