summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/platform/AsyncFileSystemCallbacks.h
diff options
context:
space:
mode:
authorsunil.ratnu@samsung.com <sunil.ratnu@samsung.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2014-08-14 00:37:27 +0000
committersunil.ratnu@samsung.com <sunil.ratnu@samsung.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2014-08-14 00:37:27 +0000
commit47982e6fa427fe14b48e069b844ac6e6c244baf4 (patch)
tree36e62c9967e74b710ec2ceb326394e96d8d34766 /third_party/WebKit/Source/platform/AsyncFileSystemCallbacks.h
parente5a0066994a79f0169f759d020ecc2d46735cb72 (diff)
downloadchromium_src-47982e6fa427fe14b48e069b844ac6e6c244baf4.zip
chromium_src-47982e6fa427fe14b48e069b844ac6e6c244baf4.tar.gz
chromium_src-47982e6fa427fe14b48e069b844ac6e6c244baf4.tar.bz2
Cleanup namespace usage in Source/core/platform/[A-Z]*.h
Cleanup namespace usage in Source/core/platform/[A-Z]*.h - Merge multiple |namespace blink {}| block - Remove unnecessary blink:: prefixes - Make blank lines consistent BUG=None Review URL: https://codereview.chromium.org/467193002 git-svn-id: svn://svn.chromium.org/blink/trunk@180218 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/Source/platform/AsyncFileSystemCallbacks.h')
-rw-r--r--third_party/WebKit/Source/platform/AsyncFileSystemCallbacks.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/WebKit/Source/platform/AsyncFileSystemCallbacks.h b/third_party/WebKit/Source/platform/AsyncFileSystemCallbacks.h
index 88564ad..2f6ee3e 100644
--- a/third_party/WebKit/Source/platform/AsyncFileSystemCallbacks.h
+++ b/third_party/WebKit/Source/platform/AsyncFileSystemCallbacks.h
@@ -68,7 +68,7 @@ public:
virtual void didReadDirectoryEntries(bool hasMore) { ASSERT_NOT_REACHED(); }
// Called when an AsyncFileWrter has been created successfully.
- virtual void didCreateFileWriter(PassOwnPtr<blink::WebFileWriter>, long long length) { ASSERT_NOT_REACHED(); }
+ virtual void didCreateFileWriter(PassOwnPtr<WebFileWriter>, long long length) { ASSERT_NOT_REACHED(); }
// Called when there was an error.
virtual void didFail(int code) = 0;
@@ -91,6 +91,6 @@ private:
bool m_blockUntilCompletion;
};
-} // namespace
+} // namespace blink
#endif // AsyncFileSystemCallbacks_h