| Index: chrome/browser/ui/metro_pin_tab_helper.h
|
| diff --git a/chrome/browser/ui/metro_pin_tab_helper.h b/chrome/browser/ui/metro_pin_tab_helper.h
|
| index c439414d7ec1ad9c5dbc684c3c0b3deb37ba508c..c04502a9660e888c94520aa26fe64321ebc3004c 100644
|
| --- a/chrome/browser/ui/metro_pin_tab_helper.h
|
| +++ b/chrome/browser/ui/metro_pin_tab_helper.h
|
| @@ -12,9 +12,7 @@
|
| class MetroPinTabHelper : public content::WebContentsObserver,
|
| public WebContentsUserData<MetroPinTabHelper> {
|
| public:
|
| - explicit MetroPinTabHelper(content::WebContents* tab_contents);
|
| virtual ~MetroPinTabHelper();
|
| - static int kUserDataKey;
|
|
|
| bool is_pinned() const { return is_pinned_; }
|
|
|
| @@ -26,6 +24,10 @@ class MetroPinTabHelper : public content::WebContentsObserver,
|
| const content::FrameNavigateParams& params) OVERRIDE;
|
|
|
| private:
|
| + explicit MetroPinTabHelper(content::WebContents* tab_contents);
|
| + static int kUserDataKey;
|
| + friend class WebContentsUserData<MetroPinTabHelper>;
|
| +
|
| // Queries the metro driver about the pinned state of the current URL.
|
| void UpdatePinnedStateForCurrentURL();
|
|
|
|
|