| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 #include "core/loader/MixedContentChecker.h" | 83 #include "core/loader/MixedContentChecker.h" |
| 84 #include "core/loader/SinkDocument.h" | 84 #include "core/loader/SinkDocument.h" |
| 85 #include "core/loader/appcache/ApplicationCache.h" | 85 #include "core/loader/appcache/ApplicationCache.h" |
| 86 #include "core/page/Chrome.h" | 86 #include "core/page/Chrome.h" |
| 87 #include "core/page/ChromeClient.h" | 87 #include "core/page/ChromeClient.h" |
| 88 #include "core/page/CreateWindow.h" | 88 #include "core/page/CreateWindow.h" |
| 89 #include "core/page/EventHandler.h" | 89 #include "core/page/EventHandler.h" |
| 90 #include "core/page/FrameTree.h" | 90 #include "core/page/FrameTree.h" |
| 91 #include "core/page/Page.h" | 91 #include "core/page/Page.h" |
| 92 #include "core/page/WindowFeatures.h" | 92 #include "core/page/WindowFeatures.h" |
| 93 #include "core/page/WindowFocusAllowedIndicator.h" |
| 93 #include "core/page/scrolling/ScrollingCoordinator.h" | 94 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 94 #include "core/storage/Storage.h" | 95 #include "core/storage/Storage.h" |
| 95 #include "core/storage/StorageArea.h" | 96 #include "core/storage/StorageArea.h" |
| 96 #include "core/storage/StorageNamespace.h" | 97 #include "core/storage/StorageNamespace.h" |
| 97 #include "core/timing/Performance.h" | 98 #include "core/timing/Performance.h" |
| 98 #include "platform/EventDispatchForbiddenScope.h" | 99 #include "platform/EventDispatchForbiddenScope.h" |
| 99 #include "platform/PlatformScreen.h" | 100 #include "platform/PlatformScreen.h" |
| 100 #include "platform/RuntimeEnabledFeatures.h" | 101 #include "platform/RuntimeEnabledFeatures.h" |
| 101 #include "platform/UserGestureIndicator.h" | 102 #include "platform/UserGestureIndicator.h" |
| 102 #include "platform/geometry/FloatRect.h" | 103 #include "platform/geometry/FloatRect.h" |
| (...skipping 1876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1979 return m_frameObserver->frame(); | 1980 return m_frameObserver->frame(); |
| 1980 } | 1981 } |
| 1981 | 1982 |
| 1982 v8::Handle<v8::Object> LocalDOMWindow::wrap(v8::Handle<v8::Object> creationConte
xt, v8::Isolate* isolate) | 1983 v8::Handle<v8::Object> LocalDOMWindow::wrap(v8::Handle<v8::Object> creationConte
xt, v8::Isolate* isolate) |
| 1983 { | 1984 { |
| 1984 ASSERT_NOT_REACHED(); // LocalDOMWindow has [Custom=ToV8]. | 1985 ASSERT_NOT_REACHED(); // LocalDOMWindow has [Custom=ToV8]. |
| 1985 return v8::Handle<v8::Object>(); | 1986 return v8::Handle<v8::Object>(); |
| 1986 } | 1987 } |
| 1987 | 1988 |
| 1988 } // namespace blink | 1989 } // namespace blink |
| OLD | NEW |