OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROME_WEB_UI_FACTORY_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROME_WEB_UI_FACTORY_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_CHROME_WEB_UI_FACTORY_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROME_WEB_UI_FACTORY_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/memory/singleton.h" | 10 #include "base/memory/singleton.h" |
(...skipping 17 matching lines...) Expand all Loading... | |
28 const GURL& url) const; | 28 const GURL& url) const; |
29 | 29 |
30 // Get the favicon for |page_url| and forward the result to the |request| | 30 // Get the favicon for |page_url| and forward the result to the |request| |
31 // when loaded. | 31 // when loaded. |
32 void GetFaviconForURL(Profile* profile, | 32 void GetFaviconForURL(Profile* profile, |
33 FaviconService::GetFaviconRequest* request, | 33 FaviconService::GetFaviconRequest* request, |
34 const GURL& page_url) const; | 34 const GURL& page_url) const; |
35 | 35 |
36 static ChromeWebUIFactory* GetInstance(); | 36 static ChromeWebUIFactory* GetInstance(); |
37 | 37 |
38 protected: | |
39 DISALLOW_IMPLICIT_CONSTRUCTORS(ChromeWebUIFactory); | |
Lei Zhang (Do not use)
2011/05/24 18:00:06
nit: this should be last.
Sheridan Rawlins
2011/05/24 20:17:22
Ok, based upon Evan's comments and the example, I
| |
40 | |
41 virtual ~ChromeWebUIFactory(); | |
42 | |
38 private: | 43 private: |
39 virtual ~ChromeWebUIFactory(); | |
40 | 44 |
41 friend struct DefaultSingletonTraits<ChromeWebUIFactory>; | 45 friend struct DefaultSingletonTraits<ChromeWebUIFactory>; |
42 | 46 |
43 // Gets the data for the favicon for a WebUI page. Returns NULL if the WebUI | 47 // Gets the data for the favicon for a WebUI page. Returns NULL if the WebUI |
44 // does not have a favicon. | 48 // does not have a favicon. |
45 RefCountedMemory* GetFaviconResourceBytes(const GURL& page_url) const; | 49 RefCountedMemory* GetFaviconResourceBytes(const GURL& page_url) const; |
46 | |
47 DISALLOW_IMPLICIT_CONSTRUCTORS(ChromeWebUIFactory); | |
48 }; | 50 }; |
49 | 51 |
50 #endif // CHROME_BROWSER_UI_WEBUI_CHROME_WEB_UI_FACTORY_H_ | 52 #endif // CHROME_BROWSER_UI_WEBUI_CHROME_WEB_UI_FACTORY_H_ |
OLD | NEW |