diff options
Diffstat (limited to 'webkit/fileapi/file_system_callback_dispatcher.cc')
-rw-r--r-- | webkit/fileapi/file_system_callback_dispatcher.cc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/webkit/fileapi/file_system_callback_dispatcher.cc b/webkit/fileapi/file_system_callback_dispatcher.cc new file mode 100644 index 0000000..1298979 --- /dev/null +++ b/webkit/fileapi/file_system_callback_dispatcher.cc @@ -0,0 +1,20 @@ +// Copyright (c) 2011 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/fileapi/file_system_callback_dispatcher.h" + +#include "base/logging.h" + +namespace fileapi { + +FileSystemCallbackDispatcher::~FileSystemCallbackDispatcher() { +} + +void FileSystemCallbackDispatcher::DidOpenFile( + base::PlatformFile file, + base::ProcessHandle peer_handle) { + NOTREACHED(); +} + +} // namespace fileapi |