OLD | NEW |
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/plugins/npapi/webplugin_file_delegate.h" | 5 #include "webkit/glue/plugins/webplugin_file_delegate.h" |
6 | 6 |
7 namespace webkit { | 7 namespace webkit_glue { |
8 namespace npapi { | |
9 | 8 |
10 bool WebPluginFileDelegate::ChooseFile(const char* mime_types, | 9 bool WebPluginFileDelegate::ChooseFile(const char* mime_types, |
11 int mode, | 10 int mode, |
12 NPChooseFileCallback callback, | 11 NPChooseFileCallback callback, |
13 void* user_data) { | 12 void* user_data) { |
14 return false; | 13 return false; |
15 } | 14 } |
16 | 15 |
17 } // namespace npapi | 16 } // namespace webkit_glue |
18 } // namespace webkit | |
19 | 17 |
OLD | NEW |