diff options
author | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-21 07:01:34 +0000 |
---|---|---|
committer | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-21 07:01:34 +0000 |
commit | 1faee3f0c048f4e8f7cb165497376ec09e3155e1 (patch) | |
tree | e4dfc755184d2a9382a7836df636994a875f97bd /chrome/browser/dom_ui/dom_ui_theme_source.cc | |
parent | f66333c798f7b252477fae4ef8827dc2cba7dbce (diff) | |
download | chromium_src-1faee3f0c048f4e8f7cb165497376ec09e3155e1.zip chromium_src-1faee3f0c048f4e8f7cb165497376ec09e3155e1.tar.gz chromium_src-1faee3f0c048f4e8f7cb165497376ec09e3155e1.tar.bz2 |
Rename ThemeResourcesUtil to ResourcesUtil.
I'll be adding a map of FilePath to resource id to this class soon.
For example, FilePath("bookmark_manager/main.html") -> id.
Review URL: http://codereview.chromium.org/2870001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50336 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/dom_ui/dom_ui_theme_source.cc')
-rw-r--r-- | chrome/browser/dom_ui/dom_ui_theme_source.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/dom_ui/dom_ui_theme_source.cc b/chrome/browser/dom_ui/dom_ui_theme_source.cc index 9a33a12..f34091e 100644 --- a/chrome/browser/dom_ui/dom_ui_theme_source.cc +++ b/chrome/browser/dom_ui/dom_ui_theme_source.cc @@ -11,7 +11,7 @@ #include "chrome/browser/chrome_thread.h" #include "chrome/browser/dom_ui/ntp_resource_cache.h" #include "chrome/browser/profile.h" -#include "chrome/browser/theme_resources_util.h" +#include "chrome/browser/resources_util.h" #include "chrome/common/url_constants.h" #include "googleurl/src/gurl.h" @@ -50,7 +50,7 @@ void DOMUIThemeSource::StartDataRequest(const std::string& path, SendResponse(request_id, css_bytes_); return; } else { - int resource_id = ThemeResourcesUtil::GetId(uncached_path); + int resource_id = ResourcesUtil::GetThemeResourceId(uncached_path); if (resource_id != -1) { SendThemeBitmap(request_id, resource_id); return; @@ -83,7 +83,7 @@ MessageLoop* DOMUIThemeSource::MessageLoopForRequestPath( } // If it's not a themeable image, we don't need to go to the UI thread. - int resource_id = ThemeResourcesUtil::GetId(uncached_path); + int resource_id = ResourcesUtil::GetThemeResourceId(uncached_path); if (!BrowserThemeProvider::IsThemeableImage(resource_id)) return NULL; |