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

Unified Diff: webkit/fileapi/file_system_callback_dispatcher.cc

Issue 14796018: Cleanup: Deprecate FileSystemCallbackDispatcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 months 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 side-by-side diff with in-line comments
Download patch
Index: webkit/fileapi/file_system_callback_dispatcher.cc
diff --git a/webkit/fileapi/file_system_callback_dispatcher.cc b/webkit/fileapi/file_system_callback_dispatcher.cc
deleted file mode 100644
index 3e040b39bd77ad7f61c7dc34d558201bc1c2f721..0000000000000000000000000000000000000000
--- 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

Powered by Google App Engine
This is Rietveld 408576698