OLD | NEW |
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/scoped_callback_factory.h" | |
11 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
12 #include "base/message_loop_proxy.h" | 11 #include "base/message_loop_proxy.h" |
13 #include "base/stl_util.h" | 12 #include "base/stl_util.h" |
14 #include "base/task.h" | 13 #include "base/task.h" |
15 #include "webkit/plugins/ppapi/host_globals.h" | 14 #include "webkit/plugins/ppapi/host_globals.h" |
16 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 15 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
17 #include "webkit/plugins/ppapi/resource_helper.h" | 16 #include "webkit/plugins/ppapi/resource_helper.h" |
18 | 17 |
19 using base::PlatformFile; | 18 using base::PlatformFile; |
20 using base::PlatformFileError; | 19 using base::PlatformFileError; |
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
396 | 395 |
397 | 396 |
398 PluginDelegate* plugin_delegate = GetPluginDelegate(); | 397 PluginDelegate* plugin_delegate = GetPluginDelegate(); |
399 if (plugin_delegate) | 398 if (plugin_delegate) |
400 plugin_delegate->DidUpdateFile(file_url_, delta); | 399 plugin_delegate->DidUpdateFile(file_url_, delta); |
401 inflight_operations_ = 0; | 400 inflight_operations_ = 0; |
402 } | 401 } |
403 | 402 |
404 } // namespace ppapi | 403 } // namespace ppapi |
405 } // namespace webkit | 404 } // namespace webkit |
OLD | NEW |