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

Unified Diff: chrome/browser/extensions/api/messaging/native_process_launcher.cc

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (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: chrome/browser/extensions/api/messaging/native_process_launcher.cc
diff --git a/chrome/browser/extensions/api/messaging/native_process_launcher.cc b/chrome/browser/extensions/api/messaging/native_process_launcher.cc
index 8073b79677ce8541c1f35939cf8af5713abb1ffa..dabcbb3e2ccce85d7130859200d68d7848d74207 100644
--- a/chrome/browser/extensions/api/messaging/native_process_launcher.cc
+++ b/chrome/browser/extensions/api/messaging/native_process_launcher.cc
@@ -39,11 +39,11 @@ class NativeProcessLauncherImpl : public NativeProcessLauncher {
public:
NativeProcessLauncherImpl(bool allow_user_level_hosts,
intptr_t native_window);
- virtual ~NativeProcessLauncherImpl();
+ ~NativeProcessLauncherImpl() override;
- virtual void Launch(const GURL& origin,
- const std::string& native_host_name,
- LaunchedCallback callback) const override;
+ void Launch(const GURL& origin,
+ const std::string& native_host_name,
+ LaunchedCallback callback) const override;
private:
class Core : public base::RefCountedThreadSafe<Core> {

Powered by Google App Engine
This is Rietveld 408576698