| Index: chrome/browser/ui/webui/chrome_web_ui_factory.h
|
| diff --git a/chrome/browser/ui/webui/chrome_web_ui_factory.h b/chrome/browser/ui/webui/chrome_web_ui_factory.h
|
| index 0214baaa45db7936386db8039606ccc140f35dce..0457dde6153fa8e3b7d8c124023282bb0a1b9f9a 100644
|
| --- a/chrome/browser/ui/webui/chrome_web_ui_factory.h
|
| +++ b/chrome/browser/ui/webui/chrome_web_ui_factory.h
|
| @@ -35,16 +35,19 @@ class ChromeWebUIFactory : public content::WebUIFactory {
|
|
|
| static ChromeWebUIFactory* GetInstance();
|
|
|
| - private:
|
| + protected:
|
| + ChromeWebUIFactory();
|
| virtual ~ChromeWebUIFactory();
|
|
|
| + private:
|
| +
|
| friend struct DefaultSingletonTraits<ChromeWebUIFactory>;
|
|
|
| // Gets the data for the favicon for a WebUI page. Returns NULL if the WebUI
|
| // does not have a favicon.
|
| RefCountedMemory* GetFaviconResourceBytes(const GURL& page_url) const;
|
|
|
| - DISALLOW_IMPLICIT_CONSTRUCTORS(ChromeWebUIFactory);
|
| + DISALLOW_COPY_AND_ASSIGN(ChromeWebUIFactory);
|
| };
|
|
|
| #endif // CHROME_BROWSER_UI_WEBUI_CHROME_WEB_UI_FACTORY_H_
|
|
|