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

Side by Side Diff: chrome/browser/renderer_host/pepper/pepper_broker_message_filter.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_MESSAGE_FILTER_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_MESSAGE_FILTER_H_
6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_MESSAGE_FILTER_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_MESSAGE_FILTER_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "ppapi/c/pp_instance.h" 9 #include "ppapi/c/pp_instance.h"
10 #include "ppapi/host/resource_message_filter.h" 10 #include "ppapi/host/resource_message_filter.h"
(...skipping 11 matching lines...) Expand all
22 22
23 namespace chrome { 23 namespace chrome {
24 24
25 // This filter handles messages for the PepperBrokerHost on the UI thread. 25 // This filter handles messages for the PepperBrokerHost on the UI thread.
26 class PepperBrokerMessageFilter : public ppapi::host::ResourceMessageFilter { 26 class PepperBrokerMessageFilter : public ppapi::host::ResourceMessageFilter {
27 public: 27 public:
28 PepperBrokerMessageFilter(PP_Instance instance, 28 PepperBrokerMessageFilter(PP_Instance instance,
29 content::BrowserPpapiHost* host); 29 content::BrowserPpapiHost* host);
30 30
31 private: 31 private:
32 virtual ~PepperBrokerMessageFilter(); 32 ~PepperBrokerMessageFilter() override;
33 33
34 // ppapi::host::ResourceMessageFilter overrides. 34 // ppapi::host::ResourceMessageFilter overrides.
35 virtual scoped_refptr<base::TaskRunner> OverrideTaskRunnerForMessage( 35 scoped_refptr<base::TaskRunner> OverrideTaskRunnerForMessage(
36 const IPC::Message& message) override; 36 const IPC::Message& message) override;
37 virtual int32_t OnResourceMessageReceived( 37 int32_t OnResourceMessageReceived(
38 const IPC::Message& msg, 38 const IPC::Message& msg,
39 ppapi::host::HostMessageContext* context) override; 39 ppapi::host::HostMessageContext* context) override;
40 40
41 int32_t OnIsAllowed(ppapi::host::HostMessageContext* context); 41 int32_t OnIsAllowed(ppapi::host::HostMessageContext* context);
42 42
43 int render_process_id_; 43 int render_process_id_;
44 GURL document_url_; 44 GURL document_url_;
45 45
46 DISALLOW_COPY_AND_ASSIGN(PepperBrokerMessageFilter); 46 DISALLOW_COPY_AND_ASSIGN(PepperBrokerMessageFilter);
47 }; 47 };
48 48
49 } // namespace chrome 49 } // namespace chrome
50 50
51 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_MESSAGE_FILTER_H_ 51 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROKER_MESSAGE_FILTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698