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

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

Issue 1913833002: Current work-in-progress crbug.com/567021 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed html import issue. Created 4 years 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 !m_child->loader()->hasError(); 113 !m_child->loader()->hasError();
114 } 114 }
115 115
116 void LinkImport::ownerInserted() { 116 void LinkImport::ownerInserted() {
117 if (m_child) 117 if (m_child)
118 m_child->ownerInserted(); 118 m_child->ownerInserted();
119 } 119 }
120 120
121 void LinkImport::ownerRemoved() { 121 void LinkImport::ownerRemoved() {
122 if (m_owner) 122 if (m_owner)
123 m_owner->document().styleEngine().importRemoved(); 123 m_owner->document().styleEngine().importAddedOrRemoved();
124 } 124 }
125 125
126 DEFINE_TRACE(LinkImport) { 126 DEFINE_TRACE(LinkImport) {
127 visitor->trace(m_child); 127 visitor->trace(m_child);
128 HTMLImportChildClient::trace(visitor); 128 HTMLImportChildClient::trace(visitor);
129 LinkResource::trace(visitor); 129 LinkResource::trace(visitor);
130 } 130 }
131 131
132 } // namespace blink 132 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698