| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 4 * Copyright (C) 2012, Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2012, Samsung Electronics. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "config.h" | 22 #include "config.h" |
| 23 #include "core/page/Chrome.h" | 23 #include "core/page/Chrome.h" |
| 24 | 24 |
| 25 #include "public/platform/WebScreenInfo.h" | 25 #include "public/platform/WebScreenInfo.h" |
| 26 #include <wtf/PassRefPtr.h> | 26 #include <wtf/PassRefPtr.h> |
| 27 #include <wtf/RefPtr.h> | 27 #include <wtf/RefPtr.h> |
| 28 #include <wtf/text/StringBuilder.h> | 28 #include <wtf/text/StringBuilder.h> |
| 29 #include <wtf/Vector.h> | 29 #include <wtf/Vector.h> |
| 30 #include "HTMLNames.h" | 30 #include "HTMLNames.h" |
| 31 #include "core/dom/Document.h" | 31 #include "core/dom/Document.h" |
| 32 #include "core/fileapi/FileList.h" | |
| 33 #include "core/html/HTMLFormElement.h" | |
| 34 #include "core/html/HTMLInputElement.h" | 32 #include "core/html/HTMLInputElement.h" |
| 35 #include "core/inspector/InspectorInstrumentation.h" | 33 #include "core/inspector/InspectorInstrumentation.h" |
| 36 #include "core/page/ChromeClient.h" | 34 #include "core/page/ChromeClient.h" |
| 37 #include "core/page/Frame.h" | 35 #include "core/page/Frame.h" |
| 38 #include "core/page/FrameTree.h" | 36 #include "core/page/FrameTree.h" |
| 39 #include "core/page/Page.h" | 37 #include "core/page/Page.h" |
| 40 #include "core/page/PageGroupLoadDeferrer.h" | 38 #include "core/page/PageGroupLoadDeferrer.h" |
| 41 #include "core/page/PopupOpeningObserver.h" | 39 #include "core/page/PopupOpeningObserver.h" |
| 42 #include "core/page/Settings.h" | |
| 43 #include "core/page/WindowFeatures.h" | |
| 44 #include "core/platform/DateTimeChooser.h" | 40 #include "core/platform/DateTimeChooser.h" |
| 45 #include "core/platform/FileChooser.h" | 41 #include "core/platform/FileChooser.h" |
| 46 #include "core/platform/FileIconLoader.h" | |
| 47 #include "core/platform/graphics/FloatRect.h" | 42 #include "core/platform/graphics/FloatRect.h" |
| 48 #include "core/platform/graphics/Icon.h" | |
| 49 #include "core/platform/network/DNS.h" | 43 #include "core/platform/network/DNS.h" |
| 50 #include "core/platform/network/ResourceHandle.h" | |
| 51 #include "core/rendering/HitTestResult.h" | 44 #include "core/rendering/HitTestResult.h" |
| 52 #include "core/rendering/RenderObject.h" | |
| 53 #include "core/storage/StorageNamespace.h" | 45 #include "core/storage/StorageNamespace.h" |
| 54 #include "modules/geolocation/Geolocation.h" | |
| 55 #include "weborigin/SecurityOrigin.h" | |
| 56 | 46 |
| 57 #if ENABLE(INPUT_TYPE_COLOR) | 47 #if ENABLE(INPUT_TYPE_COLOR) |
| 58 #include "core/platform/ColorChooser.h" | 48 #include "core/platform/ColorChooser.h" |
| 59 #endif | 49 #endif |
| 60 | 50 |
| 61 namespace WebCore { | 51 namespace WebCore { |
| 62 | 52 |
| 63 using namespace HTMLNames; | 53 using namespace HTMLNames; |
| 64 using namespace std; | 54 using namespace std; |
| 65 | 55 |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 } | 454 } |
| 465 | 455 |
| 466 void Chrome::notifyPopupOpeningObservers() const | 456 void Chrome::notifyPopupOpeningObservers() const |
| 467 { | 457 { |
| 468 const Vector<PopupOpeningObserver*> observers(m_popupOpeningObservers); | 458 const Vector<PopupOpeningObserver*> observers(m_popupOpeningObservers); |
| 469 for (size_t i = 0; i < observers.size(); ++i) | 459 for (size_t i = 0; i < observers.size(); ++i) |
| 470 observers[i]->willOpenPopup(); | 460 observers[i]->willOpenPopup(); |
| 471 } | 461 } |
| 472 | 462 |
| 473 } // namespace WebCore | 463 } // namespace WebCore |
| OLD | NEW |