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/ppb_flash_menu_impl.h" | 5 #include "webkit/plugins/ppapi/ppb_flash_menu_impl.h" |
6 | 6 |
7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
8 #include "gfx/point.h" | |
9 #include "ppapi/c/pp_completion_callback.h" | 8 #include "ppapi/c/pp_completion_callback.h" |
| 9 #include "ui/gfx/point.h" |
10 #include "webkit/glue/webmenuitem.h" | 10 #include "webkit/glue/webmenuitem.h" |
11 #include "webkit/plugins/ppapi/common.h" | 11 #include "webkit/plugins/ppapi/common.h" |
12 #include "webkit/plugins/ppapi/plugin_delegate.h" | 12 #include "webkit/plugins/ppapi/plugin_delegate.h" |
13 #include "webkit/plugins/ppapi/plugin_module.h" | 13 #include "webkit/plugins/ppapi/plugin_module.h" |
14 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 14 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
15 | 15 |
16 namespace webkit { | 16 namespace webkit { |
17 namespace ppapi { | 17 namespace ppapi { |
18 | 18 |
19 namespace { | 19 namespace { |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 | 214 |
215 scoped_refptr<TrackedCompletionCallback> callback; | 215 scoped_refptr<TrackedCompletionCallback> callback; |
216 callback.swap(callback_); | 216 callback.swap(callback_); |
217 selected_id_out_ = NULL; | 217 selected_id_out_ = NULL; |
218 | 218 |
219 callback->Run(rv); // Will complete abortively if necessary. | 219 callback->Run(rv); // Will complete abortively if necessary. |
220 } | 220 } |
221 | 221 |
222 } // namespace ppapi | 222 } // namespace ppapi |
223 } // namespace webkit | 223 } // namespace webkit |
OLD | NEW |