Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Unified Diff: chromecast/common/cast_resource_delegate.cc

Issue 1601583002: Cleanup: Remove unused ui::ResourceBundle::ImageRTL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/common/cast_resource_delegate.h ('k') | ui/base/resource/resource_bundle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/common/cast_resource_delegate.cc
diff --git a/chromecast/common/cast_resource_delegate.cc b/chromecast/common/cast_resource_delegate.cc
index ce7af5150cf3e1d1cbcbc4aedb9721667bd46812..22b29cb9e74a8e00b27585ab1b95f563770e80c8 100644
--- a/chromecast/common/cast_resource_delegate.cc
+++ b/chromecast/common/cast_resource_delegate.cc
@@ -36,7 +36,7 @@ base::FilePath CastResourceDelegate::GetPathForResourcePack(
const base::FilePath& pack_path,
ui::ScaleFactor scale_factor) {
return pack_path;
-};
+}
base::FilePath CastResourceDelegate::GetPathForLocalePack(
const base::FilePath& pack_path,
@@ -49,29 +49,27 @@ base::FilePath CastResourceDelegate::GetPathForLocalePack(
Append(FILE_PATH_LITERAL("chromecast_locales")).
Append(FILE_PATH_LITERAL(locale)).
AddExtension(FILE_PATH_LITERAL("pak"));
-};
+}
gfx::Image CastResourceDelegate::GetImageNamed(int resource_id) {
return gfx::Image();
-};
+}
-gfx::Image CastResourceDelegate::GetNativeImageNamed(
- int resource_id,
- ui::ResourceBundle::ImageRTL rtl) {
+gfx::Image CastResourceDelegate::GetNativeImageNamed(int resource_id) {
return gfx::Image();
-};
+}
base::RefCountedStaticMemory* CastResourceDelegate::LoadDataResourceBytes(
int resource_id,
ui::ScaleFactor scale_factor) {
return NULL;
-};
+}
bool CastResourceDelegate::GetRawDataResource(int resource_id,
ui::ScaleFactor scale_factor,
base::StringPiece* value) {
return false;
-};
+}
bool CastResourceDelegate::GetLocalizedString(int message_id,
base::string16* value) {
@@ -82,7 +80,7 @@ bool CastResourceDelegate::GetLocalizedString(int message_id,
return true;
}
return false;
-};
+}
void CastResourceDelegate::AddExtraLocalizedString(
int resource_id,
@@ -102,6 +100,6 @@ void CastResourceDelegate::ClearAllExtraLocalizedStrings() {
scoped_ptr<gfx::Font> CastResourceDelegate::GetFont(
ui::ResourceBundle::FontStyle style) {
return scoped_ptr<gfx::Font>();
-};
+}
} // namespace chromecast
« no previous file with comments | « chromecast/common/cast_resource_delegate.h ('k') | ui/base/resource/resource_bundle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698