summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
Diffstat (limited to 'webkit')
-rw-r--r--webkit/fileapi/file_system_callback_dispatcher.cc5
-rw-r--r--webkit/fileapi/file_system_callback_dispatcher.h3
2 files changed, 3 insertions, 5 deletions
diff --git a/webkit/fileapi/file_system_callback_dispatcher.cc b/webkit/fileapi/file_system_callback_dispatcher.cc
index 08fdf55..5317bb8 100644
--- a/webkit/fileapi/file_system_callback_dispatcher.cc
+++ b/webkit/fileapi/file_system_callback_dispatcher.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 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.
@@ -12,8 +12,7 @@ FileSystemCallbackDispatcher::~FileSystemCallbackDispatcher() {
}
void FileSystemCallbackDispatcher::DidOpenFile(
- base::PlatformFile file,
- base::ProcessHandle peer_handle) {
+ base::PlatformFile file) {
NOTREACHED();
if (file != base::kInvalidPlatformFileValue)
diff --git a/webkit/fileapi/file_system_callback_dispatcher.h b/webkit/fileapi/file_system_callback_dispatcher.h
index 9d18f9d..a41c8df 100644
--- a/webkit/fileapi/file_system_callback_dispatcher.h
+++ b/webkit/fileapi/file_system_callback_dispatcher.h
@@ -58,8 +58,7 @@ class FileSystemCallbackDispatcher {
// for Pepper.
// The method will be responsible for closing |file|.
virtual void DidOpenFile(
- base::PlatformFile file,
- base::ProcessHandle peer_handle);
+ base::PlatformFile file);
};
} // namespace fileapi