Disable ContentSettingBubbleModelTest.RPHAllow which is flaky.
[chromium-blink-merge.git] / content / renderer / pepper / null_file_system_callback_dispatcher.cc
blob0c8d6a3a780d180e6b9200b279190f0885cbad02
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/renderer/pepper/null_file_system_callback_dispatcher.h"
7 #include "base/files/file_path.h"
8 #include "base/files/file_util_proxy.h"
9 #include "base/logging.h"
10 #include "googleurl/src/gurl.h"
12 namespace content {
14 void NullFileSystemCallbackDispatcher::DidSucceed() {
15 NOTREACHED();
18 void NullFileSystemCallbackDispatcher::DidReadMetadata(
19 const base::PlatformFileInfo& /* file_info */,
20 const base::FilePath& /* platform_path */) {
21 NOTREACHED();
24 void NullFileSystemCallbackDispatcher::DidCreateSnapshotFile(
25 const base::PlatformFileInfo& /* file_info */,
26 const base::FilePath& /* platform_path */) {
27 NOTREACHED();
30 void NullFileSystemCallbackDispatcher::DidReadDirectory(
31 const std::vector<base::FileUtilProxy::Entry>& /* entries */,
32 bool /* has_more */) {
33 NOTREACHED();
36 void NullFileSystemCallbackDispatcher::DidOpenFileSystem(
37 const std::string& /* name */,
38 const GURL& /* root */) {
39 NOTREACHED();
42 void NullFileSystemCallbackDispatcher::DidWrite(int64 /* bytes */,
43 bool /* complete */) {
44 NOTREACHED();
47 void NullFileSystemCallbackDispatcher::DidOpenFile(
48 base::PlatformFile /* file */,
49 int /* file_open_id */,
50 quota::QuotaLimitType /* quota_policy */) {
51 NOTREACHED();
54 void NullFileSystemCallbackDispatcher::DidFail(
55 base::PlatformFileError /* platform_error */) {
56 NOTREACHED();
59 } // namespace content