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

Side by Side Diff: content/browser/renderer_host/pepper/pepper_browser_font_singleton_host.h

Issue 667943003: Standardize usage of virtual/override/final in content/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 CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROWSER_FONT_SINGLETON_HOST_ H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROWSER_FONT_SINGLETON_HOST_ H_
6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROWSER_FONT_SINGLETON_HOST_ H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROWSER_FONT_SINGLETON_HOST_ H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "ppapi/host/resource_host.h" 9 #include "ppapi/host/resource_host.h"
10 10
11 namespace content { 11 namespace content {
12 12
13 class BrowserPpapiHost; 13 class BrowserPpapiHost;
14 14
15 class PepperBrowserFontSingletonHost : public ppapi::host::ResourceHost { 15 class PepperBrowserFontSingletonHost : public ppapi::host::ResourceHost {
16 public: 16 public:
17 PepperBrowserFontSingletonHost(BrowserPpapiHost* host, 17 PepperBrowserFontSingletonHost(BrowserPpapiHost* host,
18 PP_Instance instance, 18 PP_Instance instance,
19 PP_Resource resource); 19 PP_Resource resource);
20 virtual ~PepperBrowserFontSingletonHost(); 20 ~PepperBrowserFontSingletonHost() override;
21 21
22 private: 22 private:
23 DISALLOW_COPY_AND_ASSIGN(PepperBrowserFontSingletonHost); 23 DISALLOW_COPY_AND_ASSIGN(PepperBrowserFontSingletonHost);
24 }; 24 };
25 25
26 } // namespace content 26 } // namespace content
27 27
28 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROWSER_FONT_SINGLETON_HO ST_H_ 28 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROWSER_FONT_SINGLETON_HO ST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698