| 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 "ppapi/c/pp_completion_callback.h" | 5 #include "ppapi/c/pp_completion_callback.h" |
| 6 #include "webkit/plugins/ppapi/audio_helper.h" | 6 #include "webkit/plugins/ppapi/audio_helper.h" |
| 7 #include "webkit/plugins/ppapi/common.h" | 7 #include "webkit/plugins/ppapi/common.h" |
| 8 #include "webkit/plugins/ppapi/resource_helper.h" | 8 #include "webkit/plugins/ppapi/resource_helper.h" |
| 9 | 9 |
| 10 namespace webkit { | 10 namespace webkit { |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 } | 86 } |
| 87 | 87 |
| 88 void AudioHelper::SetCallbackInfo(bool create_callback_pending, | 88 void AudioHelper::SetCallbackInfo(bool create_callback_pending, |
| 89 PP_CompletionCallback create_callback) { | 89 PP_CompletionCallback create_callback) { |
| 90 create_callback_pending_ = create_callback_pending; | 90 create_callback_pending_ = create_callback_pending; |
| 91 create_callback_ = create_callback; | 91 create_callback_ = create_callback; |
| 92 } | 92 } |
| 93 | 93 |
| 94 } // namespace ppapi | 94 } // namespace ppapi |
| 95 } // namespace webkit | 95 } // namespace webkit |
| OLD | NEW |