| 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 18 matching lines...) Expand all Loading... |
| 29 #include "core/inspector/InspectorInstrumentation.h" | 29 #include "core/inspector/InspectorInstrumentation.h" |
| 30 #include "core/page/ChromeClient.h" | 30 #include "core/page/ChromeClient.h" |
| 31 #include "core/page/Frame.h" | 31 #include "core/page/Frame.h" |
| 32 #include "core/page/FrameTree.h" | 32 #include "core/page/FrameTree.h" |
| 33 #include "core/page/Page.h" | 33 #include "core/page/Page.h" |
| 34 #include "core/page/PageGroupLoadDeferrer.h" | 34 #include "core/page/PageGroupLoadDeferrer.h" |
| 35 #include "core/page/PopupOpeningObserver.h" | 35 #include "core/page/PopupOpeningObserver.h" |
| 36 #include "core/page/WindowFeatures.h" | 36 #include "core/page/WindowFeatures.h" |
| 37 #include "core/platform/ColorChooser.h" | 37 #include "core/platform/ColorChooser.h" |
| 38 #include "core/platform/DateTimeChooser.h" | 38 #include "core/platform/DateTimeChooser.h" |
| 39 #include "core/platform/graphics/FloatRect.h" | |
| 40 #include "core/platform/network/DNS.h" | 39 #include "core/platform/network/DNS.h" |
| 41 #include "core/rendering/HitTestResult.h" | 40 #include "core/rendering/HitTestResult.h" |
| 42 #include "platform/FileChooser.h" | 41 #include "platform/FileChooser.h" |
| 42 #include "platform/geometry/FloatRect.h" |
| 43 #include "wtf/PassRefPtr.h" | 43 #include "wtf/PassRefPtr.h" |
| 44 #include "wtf/Vector.h" | 44 #include "wtf/Vector.h" |
| 45 | 45 |
| 46 namespace WebCore { | 46 namespace WebCore { |
| 47 | 47 |
| 48 using namespace HTMLNames; | 48 using namespace HTMLNames; |
| 49 using namespace std; | 49 using namespace std; |
| 50 | 50 |
| 51 Chrome::Chrome(Page* page, ChromeClient* client) | 51 Chrome::Chrome(Page* page, ChromeClient* client) |
| 52 : m_page(page) | 52 : m_page(page) |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 } | 413 } |
| 414 | 414 |
| 415 void Chrome::notifyPopupOpeningObservers() const | 415 void Chrome::notifyPopupOpeningObservers() const |
| 416 { | 416 { |
| 417 const Vector<PopupOpeningObserver*> observers(m_popupOpeningObservers); | 417 const Vector<PopupOpeningObserver*> observers(m_popupOpeningObservers); |
| 418 for (size_t i = 0; i < observers.size(); ++i) | 418 for (size_t i = 0; i < observers.size(); ++i) |
| 419 observers[i]->willOpenPopup(); | 419 observers[i]->willOpenPopup(); |
| 420 } | 420 } |
| 421 | 421 |
| 422 } // namespace WebCore | 422 } // namespace WebCore |
| OLD | NEW |