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

Unified Diff: content/renderer/pepper/null_file_system_callback_dispatcher.cc

Issue 13726024: Refactor FileSystem (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: NON_EXPORTED_BASE Created 7 years, 8 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
new file mode 100644
index 0000000000000000000000000000000000000000..98634cc036a55408d280d3679c578aba740a61d1
--- /dev/null
+++ b/content/renderer/pepper/null_file_system_callback_dispatcher.cc
@@ -0,0 +1,58 @@
+// 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 */,
+ quota::QuotaLimitType /* quota_policy */) {
+ NOTREACHED();
+}
+
+void NullFileSystemCallbackDispatcher::DidFail(
+ base::PlatformFileError /* platform_error */) {
+ NOTREACHED();
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698