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

Unified Diff: content/renderer/pepper/null_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: content/renderer/pepper/null_file_system_callback_dispatcher.cc
diff --git a/content/renderer/pepper/null_file_system_callback_dispatcher.cc b/content/renderer/pepper/null_file_system_callback_dispatcher.cc
deleted file mode 100644
index 0c8d6a3a780d180e6b9200b279190f0885cbad02..0000000000000000000000000000000000000000
--- a/content/renderer/pepper/null_file_system_callback_dispatcher.cc
+++ /dev/null
@@ -1,59 +0,0 @@
-// Copyright (c) 2013 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 "content/renderer/pepper/null_file_system_callback_dispatcher.h"
-
-#include "base/files/file_path.h"
-#include "base/files/file_util_proxy.h"
-#include "base/logging.h"
-#include "googleurl/src/gurl.h"
-
-namespace content {
-
-void NullFileSystemCallbackDispatcher::DidSucceed() {
- NOTREACHED();
-}
-
-void NullFileSystemCallbackDispatcher::DidReadMetadata(
- const base::PlatformFileInfo& /* file_info */,
- const base::FilePath& /* platform_path */) {
- NOTREACHED();
-}
-
-void NullFileSystemCallbackDispatcher::DidCreateSnapshotFile(
- const base::PlatformFileInfo& /* file_info */,
- const base::FilePath& /* platform_path */) {
- NOTREACHED();
-}
-
-void NullFileSystemCallbackDispatcher::DidReadDirectory(
- const std::vector<base::FileUtilProxy::Entry>& /* entries */,
- bool /* has_more */) {
- NOTREACHED();
-}
-
-void NullFileSystemCallbackDispatcher::DidOpenFileSystem(
- const std::string& /* name */,
- const GURL& /* root */) {
- NOTREACHED();
-}
-
-void NullFileSystemCallbackDispatcher::DidWrite(int64 /* bytes */,
- bool /* complete */) {
- NOTREACHED();
-}
-
-void NullFileSystemCallbackDispatcher::DidOpenFile(
- base::PlatformFile /* file */,
- int /* file_open_id */,
- quota::QuotaLimitType /* quota_policy */) {
- NOTREACHED();
-}
-
-void NullFileSystemCallbackDispatcher::DidFail(
- base::PlatformFileError /* platform_error */) {
- NOTREACHED();
-}
-
-} // namespace content
« no previous file with comments | « content/renderer/pepper/null_file_system_callback_dispatcher.h ('k') | content/renderer/pepper/pepper_file_io_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698