| 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> {
|
|
|