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

Side by Side Diff: chrome/renderer/pepper/pepper_flash_font_file_host.h

Issue 630603003: Replacing the OVERRIDE with override in chrome/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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_RENDERER_PEPPER_PEPPER_FLASH_FONT_FILE_HOST_H_ 5 #ifndef CHROME_RENDERER_PEPPER_PEPPER_FLASH_FONT_FILE_HOST_H_
6 #define CHROME_RENDERER_PEPPER_PEPPER_FLASH_FONT_FILE_HOST_H_ 6 #define CHROME_RENDERER_PEPPER_PEPPER_FLASH_FONT_FILE_HOST_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "ppapi/c/private/pp_private_font_charset.h" 10 #include "ppapi/c/private/pp_private_font_charset.h"
(...skipping 18 matching lines...) Expand all
29 PepperFlashFontFileHost( 29 PepperFlashFontFileHost(
30 content::RendererPpapiHost* host, 30 content::RendererPpapiHost* host,
31 PP_Instance instance, 31 PP_Instance instance,
32 PP_Resource resource, 32 PP_Resource resource,
33 const ppapi::proxy::SerializedFontDescription& description, 33 const ppapi::proxy::SerializedFontDescription& description,
34 PP_PrivateFontCharset charset); 34 PP_PrivateFontCharset charset);
35 virtual ~PepperFlashFontFileHost(); 35 virtual ~PepperFlashFontFileHost();
36 36
37 virtual int32_t OnResourceMessageReceived( 37 virtual 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 private: 41 private:
42 int32_t OnGetFontTable(ppapi::host::HostMessageContext* context, 42 int32_t OnGetFontTable(ppapi::host::HostMessageContext* context,
43 uint32_t table); 43 uint32_t table);
44 44
45 // Non-owning pointer. 45 // Non-owning pointer.
46 content::RendererPpapiHost* renderer_ppapi_host_; 46 content::RendererPpapiHost* renderer_ppapi_host_;
47 47
48 #if defined(OS_LINUX) || defined(OS_OPENBSD) 48 #if defined(OS_LINUX) || defined(OS_OPENBSD)
49 base::ScopedFD fd_; 49 base::ScopedFD fd_;
50 #endif 50 #endif
51 51
52 DISALLOW_COPY_AND_ASSIGN(PepperFlashFontFileHost); 52 DISALLOW_COPY_AND_ASSIGN(PepperFlashFontFileHost);
53 }; 53 };
54 54
55 #endif // CHROME_RENDERER_PEPPER_PEPPER_FLASH_FONT_FILE_HOST_H_ 55 #endif // CHROME_RENDERER_PEPPER_PEPPER_FLASH_FONT_FILE_HOST_H_
OLDNEW
« no previous file with comments | « chrome/renderer/pepper/pepper_flash_drm_renderer_host.h ('k') | chrome/renderer/pepper/pepper_flash_fullscreen_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698