| Index: chrome/browser/ui/tab_contents/per_tab_prefs_tab_helper.h
|
| diff --git a/chrome/browser/ui/tab_contents/per_tab_prefs_tab_helper.h b/chrome/browser/ui/tab_contents/per_tab_prefs_tab_helper.h
|
| index 5784dd145177475e2020435200b2c63c61d4675a..a187c00da83d4cbbc00a777c80759597b4108f6a 100644
|
| --- a/chrome/browser/ui/tab_contents/per_tab_prefs_tab_helper.h
|
| +++ b/chrome/browser/ui/tab_contents/per_tab_prefs_tab_helper.h
|
| @@ -21,14 +21,16 @@ class PerTabPrefsTabHelper : public TabContentsObserver {
|
|
|
| PrefService* prefs() { return prefs_.get(); }
|
|
|
| - void OverrideWebPreferences(WebPreferences* prefs);
|
| + virtual void OverrideWebPreferences(WebPreferences* prefs);
|
|
|
| - private:
|
| + protected:
|
| void RegisterPerTabUserPrefs(PrefService* prefs);
|
|
|
| // TabContentsObserver overrides:
|
| + virtual void RenderViewCreated(RenderViewHost* render_view_host) OVERRIDE;
|
| virtual void TabContentsDestroyed(TabContents* tab) OVERRIDE;
|
|
|
| + private:
|
| // Our owning TabContentsWrapper.
|
| TabContentsWrapper* wrapper_;
|
|
|
|
|