| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 #include "core/loader/FrameLoadRequest.h" | 44 #include "core/loader/FrameLoadRequest.h" |
| 45 #include "core/page/FocusController.h" | 45 #include "core/page/FocusController.h" |
| 46 #include "core/page/Page.h" | 46 #include "core/page/Page.h" |
| 47 #include "core/page/PagePopupClient.h" | 47 #include "core/page/PagePopupClient.h" |
| 48 #include "core/page/PagePopupSupplement.h" | 48 #include "core/page/PagePopupSupplement.h" |
| 49 #include "modules/accessibility/AXObject.h" | 49 #include "modules/accessibility/AXObject.h" |
| 50 #include "modules/accessibility/AXObjectCacheImpl.h" | 50 #include "modules/accessibility/AXObjectCacheImpl.h" |
| 51 #include "platform/EventDispatchForbiddenScope.h" | 51 #include "platform/EventDispatchForbiddenScope.h" |
| 52 #include "platform/LayoutTestSupport.h" | 52 #include "platform/LayoutTestSupport.h" |
| 53 #include "platform/ScriptForbiddenScope.h" | 53 #include "platform/ScriptForbiddenScope.h" |
| 54 #include "platform/TraceEvent.h" | |
| 55 #include "platform/heap/Handle.h" | 54 #include "platform/heap/Handle.h" |
| 55 #include "platform/tracing/TraceEvent.h" |
| 56 #include "public/platform/WebCompositeAndReadbackAsyncCallback.h" | 56 #include "public/platform/WebCompositeAndReadbackAsyncCallback.h" |
| 57 #include "public/platform/WebCursorInfo.h" | 57 #include "public/platform/WebCursorInfo.h" |
| 58 #include "public/web/WebAXObject.h" | 58 #include "public/web/WebAXObject.h" |
| 59 #include "public/web/WebFrameClient.h" | 59 #include "public/web/WebFrameClient.h" |
| 60 #include "public/web/WebViewClient.h" | 60 #include "public/web/WebViewClient.h" |
| 61 #include "public/web/WebWidgetClient.h" | 61 #include "public/web/WebWidgetClient.h" |
| 62 #include "web/WebInputEventConversion.h" | 62 #include "web/WebInputEventConversion.h" |
| 63 #include "web/WebLocalFrameImpl.h" | 63 #include "web/WebLocalFrameImpl.h" |
| 64 #include "web/WebSettingsImpl.h" | 64 #include "web/WebSettingsImpl.h" |
| 65 #include "web/WebViewImpl.h" | 65 #include "web/WebViewImpl.h" |
| (...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 576 // A WebPagePopupImpl instance usually has two references. | 576 // A WebPagePopupImpl instance usually has two references. |
| 577 // - One owned by the instance itself. It represents the visible widget. | 577 // - One owned by the instance itself. It represents the visible widget. |
| 578 // - One owned by a WebViewImpl. It's released when the WebViewImpl ask the | 578 // - One owned by a WebViewImpl. It's released when the WebViewImpl ask the |
| 579 // WebPagePopupImpl to close. | 579 // WebPagePopupImpl to close. |
| 580 // We need them because the closing operation is asynchronous and the widget | 580 // We need them because the closing operation is asynchronous and the widget |
| 581 // can be closed while the WebViewImpl is unaware of it. | 581 // can be closed while the WebViewImpl is unaware of it. |
| 582 return adoptRef(new WebPagePopupImpl(client)).leakRef(); | 582 return adoptRef(new WebPagePopupImpl(client)).leakRef(); |
| 583 } | 583 } |
| 584 | 584 |
| 585 } // namespace blink | 585 } // namespace blink |
| OLD | NEW |