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

Unified Diff: content/renderer/pepper/pepper_device_enumeration_host_helper_unittest.cc

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/renderer/pepper/pepper_device_enumeration_host_helper_unittest.cc
diff --git a/content/renderer/pepper/pepper_device_enumeration_host_helper_unittest.cc b/content/renderer/pepper/pepper_device_enumeration_host_helper_unittest.cc
index a9b2579ce66840c61b715553a1d883a6adf84a47..69c7a31860b45852c87b30f90d6e72667cbbe46a 100644
--- a/content/renderer/pepper/pepper_device_enumeration_host_helper_unittest.cc
+++ b/content/renderer/pepper/pepper_device_enumeration_host_helper_unittest.cc
@@ -33,13 +33,13 @@ class TestDelegate : public PepperDeviceEnumerationHostHelper::Delegate {
virtual int EnumerateDevices(PP_DeviceType_Dev /* type */,
const GURL& /* document_url */,
const EnumerateDevicesCallback& callback)
- OVERRIDE {
+ override {
last_used_id_++;
callbacks_[last_used_id_] = callback;
return last_used_id_;
}
- virtual void StopEnumerateDevices(int request_id) OVERRIDE {
+ virtual void StopEnumerateDevices(int request_id) override {
std::map<int, EnumerateDevicesCallback>::iterator iter =
callbacks_.find(request_id);
CHECK(iter != callbacks_.end());
« no previous file with comments | « content/renderer/pepper/pepper_compositor_host.h ('k') | content/renderer/pepper/pepper_file_chooser_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698