| Index: chrome/browser/ui/webui/ntp/new_tab_ui.h
|
| diff --git a/chrome/browser/ui/webui/ntp/new_tab_ui.h b/chrome/browser/ui/webui/ntp/new_tab_ui.h
|
| index cb64ee46795d8e7b00fe83936a90d3e0ac808797..33204fa54fd0ee17e4ef3608c3ea1dcbe3f25af1 100644
|
| --- a/chrome/browser/ui/webui/ntp/new_tab_ui.h
|
| +++ b/chrome/browser/ui/webui/ntp/new_tab_ui.h
|
| @@ -62,8 +62,10 @@ class NewTabUI : public content::WebUIController,
|
| static int current_pref_version() { return current_pref_version_; }
|
|
|
| // WebUIController implementation:
|
| - virtual void RenderViewCreated(RenderViewHost* render_view_host) OVERRIDE;
|
| - virtual void RenderViewReused(RenderViewHost* render_view_host) OVERRIDE;
|
| + virtual void RenderViewCreated(
|
| + content::RenderViewHost* render_view_host) OVERRIDE;
|
| + virtual void RenderViewReused(
|
| + content::RenderViewHost* render_view_host) OVERRIDE;
|
|
|
| // Returns true if the bookmark bar can be displayed over this webui, detached
|
| // from the location bar.
|
| @@ -115,7 +117,7 @@ class NewTabUI : public content::WebUIController,
|
| // Reset the CSS caches.
|
| void InitializeCSSCaches();
|
|
|
| - void StartTimingPaint(RenderViewHost* render_view_host);
|
| + void StartTimingPaint(content::RenderViewHost* render_view_host);
|
| void PaintTimeout();
|
|
|
| Profile* GetProfile() const;
|
|
|