| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. |
| 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> | 5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> |
| 6 * Copyright (C) Research In Motion Limited 2009. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2009. All rights reserved. |
| 7 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com> | 7 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com> |
| 8 * Copyright (C) 2011 Google Inc. All rights reserved. | 8 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 9 * | 9 * |
| 10 * Redistribution and use in source and binary forms, with or without | 10 * Redistribution and use in source and binary forms, with or without |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 #include "FrameLoaderClient.h" | 63 #include "FrameLoaderClient.h" |
| 64 #include "FrameNetworkingContext.h" | 64 #include "FrameNetworkingContext.h" |
| 65 #include "FrameTree.h" | 65 #include "FrameTree.h" |
| 66 #include "FrameView.h" | 66 #include "FrameView.h" |
| 67 #include "HTMLAnchorElement.h" | 67 #include "HTMLAnchorElement.h" |
| 68 #include "HTMLFormElement.h" | 68 #include "HTMLFormElement.h" |
| 69 #include "HTMLInputElement.h" | 69 #include "HTMLInputElement.h" |
| 70 #include "HTMLNames.h" | 70 #include "HTMLNames.h" |
| 71 #include "HTMLObjectElement.h" | 71 #include "HTMLObjectElement.h" |
| 72 #include "HTMLParserIdioms.h" | 72 #include "HTMLParserIdioms.h" |
| 73 #include "HTTPParsers.h" | |
| 74 #include "HistoryItem.h" | 73 #include "HistoryItem.h" |
| 75 #include "InspectorController.h" | 74 #include "InspectorController.h" |
| 76 #include "InspectorInstrumentation.h" | 75 #include "InspectorInstrumentation.h" |
| 77 #include "Logging.h" | 76 #include "Logging.h" |
| 78 #include "MHTMLArchive.h" | 77 #include "MHTMLArchive.h" |
| 79 #include "MIMETypeRegistry.h" | 78 #include "MIMETypeRegistry.h" |
| 80 #include "MemoryCache.h" | 79 #include "MemoryCache.h" |
| 81 #include "Page.h" | 80 #include "Page.h" |
| 82 #include "PageTransitionEvent.h" | 81 #include "PageTransitionEvent.h" |
| 83 #include "PluginData.h" | 82 #include "PluginData.h" |
| 84 #include "PluginDocument.h" | 83 #include "PluginDocument.h" |
| 85 #include "ProgressTracker.h" | 84 #include "ProgressTracker.h" |
| 86 #include "ResourceHandle.h" | |
| 87 #include "ResourceRequest.h" | |
| 88 #include "SchemeRegistry.h" | 85 #include "SchemeRegistry.h" |
| 89 #include "ScriptCallStack.h" | 86 #include "ScriptCallStack.h" |
| 90 #include "ScriptController.h" | 87 #include "ScriptController.h" |
| 91 #include "ScriptSourceCode.h" | 88 #include "ScriptSourceCode.h" |
| 92 #include "ScrollAnimator.h" | 89 #include "ScrollAnimator.h" |
| 93 #include "SecurityOrigin.h" | 90 #include "SecurityOrigin.h" |
| 94 #include "SecurityPolicy.h" | 91 #include "SecurityPolicy.h" |
| 95 #include "SegmentedString.h" | 92 #include "SegmentedString.h" |
| 96 #include "SerializedScriptValue.h" | 93 #include "SerializedScriptValue.h" |
| 97 #include "Settings.h" | 94 #include "Settings.h" |
| 98 #include "TextResourceDecoder.h" | 95 #include "TextResourceDecoder.h" |
| 99 #include "WebCoreMemoryInstrumentation.h" | 96 #include "WebCoreMemoryInstrumentation.h" |
| 100 #include "WindowFeatures.h" | 97 #include "WindowFeatures.h" |
| 101 #include "XMLDocumentParser.h" | 98 #include "XMLDocumentParser.h" |
| 102 #include "core/accessibility/AXObjectCache.h" | 99 #include "core/accessibility/AXObjectCache.h" |
| 103 #include "core/loader/UniqueIdentifier.h" | 100 #include "core/loader/UniqueIdentifier.h" |
| 104 #include "core/platform/graphics/FloatRect.h" | 101 #include "core/platform/graphics/FloatRect.h" |
| 102 #include "core/platform/network/HTTPParsers.h" |
| 103 #include "core/platform/network/ResourceHandle.h" |
| 104 #include "core/platform/network/ResourceRequest.h" |
| 105 #include <wtf/CurrentTime.h> | 105 #include <wtf/CurrentTime.h> |
| 106 #include <wtf/MemoryInstrumentationHashSet.h> | 106 #include <wtf/MemoryInstrumentationHashSet.h> |
| 107 #include <wtf/StdLibExtras.h> | 107 #include <wtf/StdLibExtras.h> |
| 108 #include <wtf/text/CString.h> | 108 #include <wtf/text/CString.h> |
| 109 #include <wtf/text/WTFString.h> | 109 #include <wtf/text/WTFString.h> |
| 110 | 110 |
| 111 #if ENABLE(SHARED_WORKERS) | 111 #if ENABLE(SHARED_WORKERS) |
| 112 #include "SharedWorkerRepository.h" | 112 #include "SharedWorkerRepository.h" |
| 113 #endif | 113 #endif |
| 114 | 114 |
| (...skipping 2931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3046 FloatRect newWindowRect = DOMWindow::adjustWindowRect(page, windowRect); | 3046 FloatRect newWindowRect = DOMWindow::adjustWindowRect(page, windowRect); |
| 3047 | 3047 |
| 3048 page->chrome()->setWindowRect(newWindowRect); | 3048 page->chrome()->setWindowRect(newWindowRect); |
| 3049 page->chrome()->show(); | 3049 page->chrome()->show(); |
| 3050 | 3050 |
| 3051 created = true; | 3051 created = true; |
| 3052 return frame; | 3052 return frame; |
| 3053 } | 3053 } |
| 3054 | 3054 |
| 3055 } // namespace WebCore | 3055 } // namespace WebCore |
| OLD | NEW |