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

Side by Side Diff: webkit/plugins/ppapi/quota_file_io.cc

Issue 9114020: Remove task.h and finish base::Bind() migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 8 years, 11 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "webkit/plugins/ppapi/quota_file_io.h" 5 #include "webkit/plugins/ppapi/quota_file_io.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
11 #include "base/message_loop_proxy.h" 11 #include "base/message_loop_proxy.h"
12 #include "base/stl_util.h" 12 #include "base/stl_util.h"
13 #include "base/task.h"
14 #include "webkit/plugins/ppapi/host_globals.h" 13 #include "webkit/plugins/ppapi/host_globals.h"
15 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" 14 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h"
16 #include "webkit/plugins/ppapi/resource_helper.h" 15 #include "webkit/plugins/ppapi/resource_helper.h"
17 16
18 using base::PlatformFile; 17 using base::PlatformFile;
19 using base::PlatformFileError; 18 using base::PlatformFileError;
20 using quota::StorageType; 19 using quota::StorageType;
21 20
22 namespace webkit { 21 namespace webkit {
23 namespace ppapi { 22 namespace ppapi {
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 394
396 395
397 PluginDelegate* plugin_delegate = GetPluginDelegate(); 396 PluginDelegate* plugin_delegate = GetPluginDelegate();
398 if (plugin_delegate) 397 if (plugin_delegate)
399 plugin_delegate->DidUpdateFile(file_url_, delta); 398 plugin_delegate->DidUpdateFile(file_url_, delta);
400 inflight_operations_ = 0; 399 inflight_operations_ = 0;
401 } 400 }
402 401
403 } // namespace ppapi 402 } // namespace ppapi
404 } // namespace webkit 403 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppb_scrollbar_impl.h ('k') | webkit/plugins/ppapi/quota_file_io_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698