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

Unified Diff: ppapi/shared_impl/ppb_instance_shared.h

Issue 1097393007: Update {virtual,override} to follow C++11 style in ppapi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Split off one file into separate review. Created 5 years, 8 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 | « ppapi/shared_impl/ppb_input_event_shared.h ('k') | ppapi/shared_impl/ppb_video_decoder_shared.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/ppb_instance_shared.h
diff --git a/ppapi/shared_impl/ppb_instance_shared.h b/ppapi/shared_impl/ppb_instance_shared.h
index 717adedd9e3348949fb4dcc86647a3e961149357..bcd284e4761c4f5291240baf919ef2ba7af7201e 100644
--- a/ppapi/shared_impl/ppb_instance_shared.h
+++ b/ppapi/shared_impl/ppb_instance_shared.h
@@ -15,16 +15,14 @@ namespace ppapi {
class PPAPI_SHARED_EXPORT PPB_Instance_Shared
: NON_EXPORTED_BASE(public thunk::PPB_Instance_API) {
public:
- virtual ~PPB_Instance_Shared();
+ ~PPB_Instance_Shared() override;
// Implementation of some shared PPB_Instance_FunctionAPI functions.
- virtual void Log(PP_Instance instance,
- PP_LogLevel log_level,
- PP_Var value) override;
- virtual void LogWithSource(PP_Instance instance,
- PP_LogLevel log_level,
- PP_Var source,
- PP_Var value) override;
+ void Log(PP_Instance instance, PP_LogLevel log_level, PP_Var value) override;
+ void LogWithSource(PP_Instance instance,
+ PP_LogLevel log_level,
+ PP_Var source,
+ PP_Var value) override;
// Error checks the given resquest to Request[Filtering]InputEvents. Returns
// PP_OK if the given classes are all valid, PP_ERROR_NOTSUPPORTED if not.
« no previous file with comments | « ppapi/shared_impl/ppb_input_event_shared.h ('k') | ppapi/shared_impl/ppb_video_decoder_shared.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698