summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/file_system_callback_dispatcher.cc
diff options
context:
space:
mode:
authormichaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-16 01:13:02 +0000
committermichaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-16 01:13:02 +0000
commit3c6c3d77b20599c6be689d5193b921470d99c037 (patch)
tree2282dc10525192ca48963330a695afc632e6da58 /webkit/fileapi/file_system_callback_dispatcher.cc
parent9ac174e96eb86eb78affd1b744231b90d831b1ac (diff)
downloadchromium_src-3c6c3d77b20599c6be689d5193b921470d99c037.zip
chromium_src-3c6c3d77b20599c6be689d5193b921470d99c037.tar.gz
chromium_src-3c6c3d77b20599c6be689d5193b921470d99c037.tar.bz2
Clang build fix, de-inline a virtual method and dtor.
TBR=ericu Review URL: http://codereview.chromium.org/6870022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81847 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/file_system_callback_dispatcher.cc')
-rw-r--r--webkit/fileapi/file_system_callback_dispatcher.cc20
1 files changed, 20 insertions, 0 deletions
diff --git a/webkit/fileapi/file_system_callback_dispatcher.cc b/webkit/fileapi/file_system_callback_dispatcher.cc
new file mode 100644
index 0000000..1298979
--- /dev/null
+++ b/webkit/fileapi/file_system_callback_dispatcher.cc
@@ -0,0 +1,20 @@
+// Copyright (c) 2011 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 "webkit/fileapi/file_system_callback_dispatcher.h"
+
+#include "base/logging.h"
+
+namespace fileapi {
+
+FileSystemCallbackDispatcher::~FileSystemCallbackDispatcher() {
+}
+
+void FileSystemCallbackDispatcher::DidOpenFile(
+ base::PlatformFile file,
+ base::ProcessHandle peer_handle) {
+ NOTREACHED();
+}
+
+} // namespace fileapi