| Index: chrome/browser/browser_theme_provider.h
|
| diff --git a/chrome/browser/browser_theme_provider.h b/chrome/browser/browser_theme_provider.h
|
| index b503b5c7b6cd09da66a9b6aede9f5bef28919e2f..5313cec4c166eed6d6f067379709c555cce95c56 100644
|
| --- a/chrome/browser/browser_theme_provider.h
|
| +++ b/chrome/browser/browser_theme_provider.h
|
| @@ -242,6 +242,10 @@ class BrowserThemeProvider : public base::RefCounted<BrowserThemeProvider>,
|
| // Save the modified bitmap at image_cache_[id].
|
| virtual void SaveThemeBitmap(std::string resource_name, int id);
|
|
|
| + // Clears the platform-specific caches. Do not call directly; it's called
|
| + // from ClearCaches().
|
| + virtual void FreePlatformCaches();
|
| +
|
| Profile* profile() { return profile_; }
|
|
|
| // Subclasses may need us to not use the on-disk image cache. The GTK
|
| @@ -312,10 +316,6 @@ class BrowserThemeProvider : public base::RefCounted<BrowserThemeProvider>,
|
| // Frees generated images and clears the image cache.
|
| void ClearCaches();
|
|
|
| - // Clears the platform-specific caches. Do not call directly; it's called
|
| - // from ClearCaches().
|
| - void FreePlatformCaches();
|
| -
|
| // Encode image at image_cache_[id] as PNG and write to disk.
|
| bool WriteImagesToDisk();
|
|
|
|
|