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

Side by Side Diff: WebKit/chromium/src/AsyncFileSystemChromium.h

Issue 12183004: Patch 3 in the series. (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/Source/
Patch Set: Created 7 years, 10 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 unified diff | Download patch
« no previous file with comments | « WebCore/platform/network/BlobData.cpp ('k') | WebKit/chromium/src/AsyncFileSystemChromium.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 virtual void createDirectory(const KURL& path, bool exclusive, PassOwnPtr<As yncFileSystemCallbacks>); 62 virtual void createDirectory(const KURL& path, bool exclusive, PassOwnPtr<As yncFileSystemCallbacks>);
63 virtual void fileExists(const KURL& path, PassOwnPtr<AsyncFileSystemCallback s>); 63 virtual void fileExists(const KURL& path, PassOwnPtr<AsyncFileSystemCallback s>);
64 virtual void directoryExists(const KURL& path, PassOwnPtr<AsyncFileSystemCal lbacks>); 64 virtual void directoryExists(const KURL& path, PassOwnPtr<AsyncFileSystemCal lbacks>);
65 virtual void readDirectory(const KURL& path, PassOwnPtr<AsyncFileSystemCallb acks>); 65 virtual void readDirectory(const KURL& path, PassOwnPtr<AsyncFileSystemCallb acks>);
66 virtual void createWriter(AsyncFileWriterClient*, const KURL& path, PassOwnP tr<AsyncFileSystemCallbacks>); 66 virtual void createWriter(AsyncFileWriterClient*, const KURL& path, PassOwnP tr<AsyncFileSystemCallbacks>);
67 virtual void createSnapshotFileAndReadMetadata(const KURL& path, PassOwnPtr< AsyncFileSystemCallbacks>); 67 virtual void createSnapshotFileAndReadMetadata(const KURL& path, PassOwnPtr< AsyncFileSystemCallbacks>);
68 68
69 protected: 69 protected:
70 AsyncFileSystemChromium(); 70 AsyncFileSystemChromium();
71 71
72 PassOwnPtr<AsyncFileSystemCallbacks> createSnapshotFileCallback(const KURL& internalBlobURL, PassOwnPtr<AsyncFileSystemCallbacks>) const;
73
74 WebKit::WebFileSystem* m_webFileSystem; 72 WebKit::WebFileSystem* m_webFileSystem;
75 }; 73 };
76 74
77 } // namespace WebCore 75 } // namespace WebCore
78 76
79 #endif 77 #endif
80 78
81 #endif // AsyncFileSystemChromium_h 79 #endif // AsyncFileSystemChromium_h
OLDNEW
« no previous file with comments | « WebCore/platform/network/BlobData.cpp ('k') | WebKit/chromium/src/AsyncFileSystemChromium.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698