Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Simon Hausmann <hausmann@kde.org> | 4 * (C) 2000 Simon Hausmann <hausmann@kde.org> |
| 5 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv ed. | 5 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv ed. |
| 6 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 22 */ | 22 */ |
| 23 | 23 |
| 24 #include "config.h" | 24 #include "config.h" |
| 25 #include "core/html/HTMLAnchorElement.h" | 25 #include "core/html/HTMLAnchorElement.h" |
| 26 | 26 |
| 27 #include "bindings/core/v8/V8DOMActivityLogger.h" | 27 #include "bindings/core/v8/V8DOMActivityLogger.h" |
| 28 #include "core/events/KeyboardEvent.h" | 28 #include "core/events/KeyboardEvent.h" |
| 29 #include "core/events/MouseEvent.h" | 29 #include "core/events/MouseEvent.h" |
| 30 #include "core/frame/FrameHost.h" | 30 #include "core/frame/FrameHost.h" |
| 31 #include "core/frame/Settings.h" | 31 #include "core/frame/Settings.h" |
| 32 #include "core/frame/UseCounter.h" | |
|
Nate Chapin
2015/08/31 23:50:15
Why?
ncarter (slow)
2015/09/01 21:10:56
Without the new #include we'd get a compile error
| |
| 32 #include "core/html/HTMLImageElement.h" | 33 #include "core/html/HTMLImageElement.h" |
| 33 #include "core/html/parser/HTMLParserIdioms.h" | 34 #include "core/html/parser/HTMLParserIdioms.h" |
| 34 #include "core/layout/LayoutImage.h" | 35 #include "core/layout/LayoutImage.h" |
| 35 #include "core/loader/FrameLoadRequest.h" | 36 #include "core/loader/FrameLoadRequest.h" |
| 36 #include "core/loader/FrameLoaderClient.h" | 37 #include "core/loader/FrameLoaderClient.h" |
| 37 #include "core/loader/PingLoader.h" | 38 #include "core/loader/PingLoader.h" |
| 38 #include "core/page/ChromeClient.h" | 39 #include "core/page/ChromeClient.h" |
| 39 #include "platform/RuntimeEnabledFeatures.h" | 40 #include "platform/RuntimeEnabledFeatures.h" |
| 40 #include "platform/network/NetworkHints.h" | 41 #include "platform/network/NetworkHints.h" |
| 41 #include "platform/weborigin/SecurityPolicy.h" | 42 #include "platform/weborigin/SecurityPolicy.h" |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 400 Vector<String> argv; | 401 Vector<String> argv; |
| 401 argv.append("a"); | 402 argv.append("a"); |
| 402 argv.append(fastGetAttribute(hrefAttr)); | 403 argv.append(fastGetAttribute(hrefAttr)); |
| 403 activityLogger->logEvent("blinkAddElement", argv.size(), argv.data() ); | 404 activityLogger->logEvent("blinkAddElement", argv.size(), argv.data() ); |
| 404 } | 405 } |
| 405 } | 406 } |
| 406 return HTMLElement::insertedInto(insertionPoint); | 407 return HTMLElement::insertedInto(insertionPoint); |
| 407 } | 408 } |
| 408 | 409 |
| 409 } // namespace blink | 410 } // namespace blink |
| OLD | NEW |