| Index: webkit/glue/plugins/webplugin_file_delegate.cc
|
| diff --git a/webkit/glue/plugins/webplugin_file_delegate.cc b/webkit/glue/plugins/webplugin_file_delegate.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..68c4c6008c265c8f51a9595a88ee2bf1f80dc8f9
|
| --- /dev/null
|
| +++ b/webkit/glue/plugins/webplugin_file_delegate.cc
|
| @@ -0,0 +1,17 @@
|
| +// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "webkit/glue/plugins/webplugin_file_delegate.h"
|
| +
|
| +namespace webkit_glue {
|
| +
|
| +bool WebPluginFileDelegate::ChooseFile(const char* mime_types,
|
| + int mode,
|
| + NPChooseFileCallback callback,
|
| + void* user_data) {
|
| + return false;
|
| +}
|
| +
|
| +} // namespace webkit_glue
|
| +
|
|
|