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

Side by Side Diff: webkit/glue/plugins/pepper_file_system.cc

Issue 5648004: Add the "virtual" keyword on method overrides that are missing it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Missing file Created 10 years 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 | Annotate | Revision Log
« no previous file with comments | « webkit/glue/plugins/pepper_file_system.h ('k') | webkit/glue/plugins/pepper_font.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "webkit/glue/plugins/pepper_file_system.h" 5 #include "webkit/glue/plugins/pepper_file_system.h"
6 6
7 #include "base/ref_counted.h" 7 #include "base/ref_counted.h"
8 #include "ppapi/c/dev/ppb_file_system_dev.h" 8 #include "ppapi/c/dev/ppb_file_system_dev.h"
9 #include "ppapi/c/pp_completion_callback.h" 9 #include "ppapi/c/pp_completion_callback.h"
10 #include "third_party/WebKit/WebKit/chromium/public/WebDocument.h" 10 #include "third_party/WebKit/WebKit/chromium/public/WebDocument.h"
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 71
72 } // namespace 72 } // namespace
73 73
74 FileSystem::FileSystem(PluginInstance* instance, PP_FileSystemType_Dev type) 74 FileSystem::FileSystem(PluginInstance* instance, PP_FileSystemType_Dev type)
75 : Resource(instance->module()), 75 : Resource(instance->module()),
76 instance_(instance), 76 instance_(instance),
77 type_(type), 77 type_(type),
78 opened_(false) { 78 opened_(false) {
79 } 79 }
80 80
81 FileSystem* FileSystem::AsFileSystem() {
82 return this;
83 }
84
81 const PPB_FileSystem_Dev* FileSystem::GetInterface() { 85 const PPB_FileSystem_Dev* FileSystem::GetInterface() {
82 return &ppb_filesystem; 86 return &ppb_filesystem;
83 } 87 }
84 88
85 } // namespace pepper 89 } // namespace pepper
OLDNEW
« no previous file with comments | « webkit/glue/plugins/pepper_file_system.h ('k') | webkit/glue/plugins/pepper_font.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698