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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLLinkElement.cpp

Issue 2721473003: Renaming FrameLoaderClient with LocalFrameClient for files in core/html (Closed)
Patch Set: Created 3 years, 9 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
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) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights 5 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
6 * reserved. 6 * reserved.
7 * Copyright (C) 2009 Rob Buis (rwlbuis@gmail.com) 7 * Copyright (C) 2009 Rob Buis (rwlbuis@gmail.com)
8 * Copyright (C) 2011 Google Inc. All rights reserved. 8 * Copyright (C) 2011 Google Inc. All rights reserved.
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 13 matching lines...) Expand all
24 */ 24 */
25 25
26 #include "core/html/HTMLLinkElement.h" 26 #include "core/html/HTMLLinkElement.h"
27 27
28 #include "bindings/core/v8/ScriptEventListener.h" 28 #include "bindings/core/v8/ScriptEventListener.h"
29 #include "core/HTMLNames.h" 29 #include "core/HTMLNames.h"
30 #include "core/dom/Attribute.h" 30 #include "core/dom/Attribute.h"
31 #include "core/dom/Document.h" 31 #include "core/dom/Document.h"
32 #include "core/dom/TaskRunnerHelper.h" 32 #include "core/dom/TaskRunnerHelper.h"
33 #include "core/events/Event.h" 33 #include "core/events/Event.h"
34 #include "core/frame/LocalFrameClient.h"
34 #include "core/frame/UseCounter.h" 35 #include "core/frame/UseCounter.h"
35 #include "core/html/CrossOriginAttribute.h" 36 #include "core/html/CrossOriginAttribute.h"
36 #include "core/html/LinkManifest.h" 37 #include "core/html/LinkManifest.h"
37 #include "core/html/imports/LinkImport.h" 38 #include "core/html/imports/LinkImport.h"
38 #include "core/inspector/ConsoleMessage.h" 39 #include "core/inspector/ConsoleMessage.h"
39 #include "core/loader/FrameLoaderClient.h"
40 #include "core/loader/NetworkHintsInterface.h" 40 #include "core/loader/NetworkHintsInterface.h"
41 #include "core/origin_trials/OriginTrials.h" 41 #include "core/origin_trials/OriginTrials.h"
42 #include "platform/weborigin/SecurityPolicy.h" 42 #include "platform/weborigin/SecurityPolicy.h"
43 #include "public/platform/WebIconSizesParser.h" 43 #include "public/platform/WebIconSizesParser.h"
44 #include "public/platform/WebSize.h" 44 #include "public/platform/WebSize.h"
45 45
46 namespace blink { 46 namespace blink {
47 47
48 using namespace HTMLNames; 48 using namespace HTMLNames;
49 49
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 LinkLoaderClient::trace(visitor); 370 LinkLoaderClient::trace(visitor);
371 DOMTokenListObserver::trace(visitor); 371 DOMTokenListObserver::trace(visitor);
372 } 372 }
373 373
374 DEFINE_TRACE_WRAPPERS(HTMLLinkElement) { 374 DEFINE_TRACE_WRAPPERS(HTMLLinkElement) {
375 visitor->traceWrappers(m_relList); 375 visitor->traceWrappers(m_relList);
376 HTMLElement::traceWrappers(visitor); 376 HTMLElement::traceWrappers(visitor);
377 } 377 }
378 378
379 } // namespace blink 379 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698