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

Unified Diff: content/browser/android/system_ui_resource_manager_impl_unittest.cc

Issue 629183002: Replacing the OVERRIDE with override and FINAL with final in content/browser/android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolving Error in android Created 6 years, 2 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
Index: content/browser/android/system_ui_resource_manager_impl_unittest.cc
diff --git a/content/browser/android/system_ui_resource_manager_impl_unittest.cc b/content/browser/android/system_ui_resource_manager_impl_unittest.cc
index 65942b7275f9c21be42b3453e2a0f1eef4de29c9..5ab07fc3aa10589dbc6e685741a1c8b162e99224 100644
--- a/content/browser/android/system_ui_resource_manager_impl_unittest.cc
+++ b/content/browser/android/system_ui_resource_manager_impl_unittest.cc
@@ -21,7 +21,7 @@ class TestSystemUIResourceManagerImpl
virtual ~TestSystemUIResourceManagerImpl() {}
virtual void BuildResource(
- ui::SystemUIResourceManager::ResourceType type) OVERRIDE {}
+ ui::SystemUIResourceManager::ResourceType type) override {}
void SetResourceAsLoaded(ui::SystemUIResourceManager::ResourceType type) {
SkBitmap small_bitmap;
@@ -49,7 +49,7 @@ class MockUIResourceProvider : public content::UIResourceProvider {
virtual ~MockUIResourceProvider() {}
virtual cc::UIResourceId CreateUIResource(
- content::UIResourceClientAndroid* client) OVERRIDE {
+ content::UIResourceClientAndroid* client) override {
if (!has_layer_tree_host_)
return 0;
cc::UIResourceId id = next_ui_resource_id_++;
@@ -58,12 +58,12 @@ class MockUIResourceProvider : public content::UIResourceProvider {
return id;
}
- virtual void DeleteUIResource(cc::UIResourceId id) OVERRIDE {
+ virtual void DeleteUIResource(cc::UIResourceId id) override {
CHECK(has_layer_tree_host_);
ui_resource_client_map_.erase(id);
}
- virtual bool SupportsETC1NonPowerOfTwo() const OVERRIDE { return true; }
+ virtual bool SupportsETC1NonPowerOfTwo() const override { return true; }
void LayerTreeHostCleared() {
has_layer_tree_host_ = false;
« no previous file with comments | « content/browser/android/system_ui_resource_manager_impl.cc ('k') | content/browser/android/ui_resource_provider_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698