Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: Source/core/html/HTMLAnchorElement.cpp

Issue 1311433008: Migrate PingLoader to be a LocalFrameLifecycleObserver. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix style. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | Source/core/loader/BeaconLoader.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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"
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
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
OLDNEW
« no previous file with comments | « no previous file | Source/core/loader/BeaconLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698