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

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

Issue 2519393002: Force adding sheets and recalc for html import re-ordering. (Closed)
Patch Set: Missing reset in resetAuthorStyle() 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
« no previous file with comments | « third_party/WebKit/Source/core/html/imports/LinkImport.h ('k') | no next file » | 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) 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 bool LinkImport::hasLoaded() const { 111 bool LinkImport::hasLoaded() const {
112 return m_owner && m_child && m_child->hasFinishedLoading() && 112 return m_owner && m_child && m_child->hasFinishedLoading() &&
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() {
122 if (m_owner)
123 m_owner->document().styleEngine().importRemoved();
124 }
125
121 DEFINE_TRACE(LinkImport) { 126 DEFINE_TRACE(LinkImport) {
122 visitor->trace(m_child); 127 visitor->trace(m_child);
123 HTMLImportChildClient::trace(visitor); 128 HTMLImportChildClient::trace(visitor);
124 LinkResource::trace(visitor); 129 LinkResource::trace(visitor);
125 } 130 }
126 131
127 } // namespace blink 132 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/imports/LinkImport.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698