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

Unified Diff: components/nacl/renderer/ppb_nacl_private_impl.cc

Issue 666133002: Standardize usage of virtual/override/final in components/ (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: components/nacl/renderer/ppb_nacl_private_impl.cc
diff --git a/components/nacl/renderer/ppb_nacl_private_impl.cc b/components/nacl/renderer/ppb_nacl_private_impl.cc
index 5af4c17b5dc15844e0045c5b110730e8b0fa34fd..2df50bbf293e23782a26875353538d74a4b584ac 100644
--- a/components/nacl/renderer/ppb_nacl_private_impl.cc
+++ b/components/nacl/renderer/ppb_nacl_private_impl.cc
@@ -165,9 +165,9 @@ class ManifestServiceProxy : public ManifestServiceChannel::Delegate {
: pp_instance_(pp_instance) {
}
- virtual ~ManifestServiceProxy() { }
+ ~ManifestServiceProxy() override {}
- virtual void StartupInitializationComplete() override {
+ void StartupInitializationComplete() override {
if (StartPpapiProxy(pp_instance_) == PP_TRUE) {
JsonManifest* manifest = GetJsonManifest(pp_instance_);
NexeLoadManager* load_manager = NexeLoadManager::Get(pp_instance_);
@@ -187,7 +187,7 @@ class ManifestServiceProxy : public ManifestServiceChannel::Delegate {
}
}
- virtual void OpenResource(
+ void OpenResource(
const std::string& key,
const ManifestServiceChannel::OpenResourceCallback& callback) override {
DCHECK(ppapi::PpapiGlobals::Get()->GetMainThreadMessageLoop()->
« no previous file with comments | « components/nacl/renderer/pnacl_translation_resource_host.h ('k') | components/nacl/renderer/trusted_plugin_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698