diff options
author | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-11 22:09:11 +0000 |
---|---|---|
committer | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-11 22:09:11 +0000 |
commit | f0ecb550248afddff9a28c8bf645e689f59a6e3e (patch) | |
tree | 5f5cf57c51d63213af26411488117f64e1a3b42d /webkit/fileapi/file_system_callback_dispatcher.cc | |
parent | e9dfe22b38c9f4b14dbf047e3e0816537ea632d4 (diff) | |
download | chromium_src-f0ecb550248afddff9a28c8bf645e689f59a6e3e.zip chromium_src-f0ecb550248afddff9a28c8bf645e689f59a6e3e.tar.gz chromium_src-f0ecb550248afddff9a28c8bf645e689f59a6e3e.tar.bz2 |
Broker out PPAPI handle duplication
BUG=127449
Review URL: https://chromiumcodereview.appspot.com/10378057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136686 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/file_system_callback_dispatcher.cc')
-rw-r--r-- | webkit/fileapi/file_system_callback_dispatcher.cc | 5 |
1 files changed, 2 insertions, 3 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) |