diff options
Diffstat (limited to 'webkit/fileapi/file_system_callback_dispatcher.cc')
-rw-r--r-- | webkit/fileapi/file_system_callback_dispatcher.cc | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/webkit/fileapi/file_system_callback_dispatcher.cc b/webkit/fileapi/file_system_callback_dispatcher.cc deleted file mode 100644 index 3e040b3..0000000 --- a/webkit/fileapi/file_system_callback_dispatcher.cc +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (c) 2012 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, - int file_open_id, - quota::QuotaLimitType quota_policy) { - NOTREACHED(); - - if (file != base::kInvalidPlatformFileValue) - base::ClosePlatformFile(file); -} - -} // namespace fileapi |