OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 18 matching lines...) Expand all Loading... |
29 */ | 29 */ |
30 | 30 |
31 #include "config.h" | 31 #include "config.h" |
32 #include "WebPagePopupImpl.h" | 32 #include "WebPagePopupImpl.h" |
33 | 33 |
34 #include "Chrome.h" | 34 #include "Chrome.h" |
35 #include "ContextFeatures.h" | 35 #include "ContextFeatures.h" |
36 #include "DOMWindowPagePopup.h" | 36 #include "DOMWindowPagePopup.h" |
37 #include "DocumentLoader.h" | 37 #include "DocumentLoader.h" |
38 #include "EmptyClients.h" | 38 #include "EmptyClients.h" |
| 39 #include "EventHandler.h" |
39 #include "FocusController.h" | 40 #include "FocusController.h" |
40 #include "FrameView.h" | 41 #include "FrameView.h" |
41 #include "Page.h" | 42 #include "Page.h" |
42 #include "PagePopupClient.h" | 43 #include "PagePopupClient.h" |
43 #include "PageWidgetDelegate.h" | 44 #include "PageWidgetDelegate.h" |
44 #include "Settings.h" | 45 #include "Settings.h" |
45 #include "WebCursorInfo.h" | 46 #include "WebCursorInfo.h" |
46 #include "WebInputEventConversion.h" | 47 #include "WebInputEventConversion.h" |
47 #include "WebPagePopup.h" | 48 #include "WebPagePopup.h" |
48 #include "WebSettingsImpl.h" | 49 #include "WebSettingsImpl.h" |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 // We need them because the closing operation is asynchronous and the widget | 365 // We need them because the closing operation is asynchronous and the widget |
365 // can be closed while the WebViewImpl is unaware of it. | 366 // can be closed while the WebViewImpl is unaware of it. |
366 return adoptRef(new WebPagePopupImpl(client)).leakRef(); | 367 return adoptRef(new WebPagePopupImpl(client)).leakRef(); |
367 #else | 368 #else |
368 UNUSED_PARAM(client); | 369 UNUSED_PARAM(client); |
369 return 0; | 370 return 0; |
370 #endif | 371 #endif |
371 } | 372 } |
372 | 373 |
373 } // namespace WebKit | 374 } // namespace WebKit |
OLD | NEW |