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

Side by Side Diff: Source/core/dom/ProcessingInstruction.cpp

Issue 170603003: Use nullptr_t for RefPtr, PassRefPtr and RawPtr. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final rebase Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/Position.cpp ('k') | Source/core/dom/Range.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) 2000 Peter Kelly (pmk@post.com) 2 * Copyright (C) 2000 Peter Kelly (pmk@post.com)
3 * Copyright (C) 2006, 2008, 2009 Apple Inc. All rights reserved. 3 * Copyright (C) 2006, 2008, 2009 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 if (!insertionPoint->inDocument()) 237 if (!insertionPoint->inDocument())
238 return; 238 return;
239 239
240 document().styleEngine()->removeStyleSheetCandidateNode(this); 240 document().styleEngine()->removeStyleSheetCandidateNode(this);
241 241
242 RefPtr<StyleSheet> removedSheet = m_sheet; 242 RefPtr<StyleSheet> removedSheet = m_sheet;
243 243
244 if (m_sheet) { 244 if (m_sheet) {
245 ASSERT(m_sheet->ownerNode() == this); 245 ASSERT(m_sheet->ownerNode() == this);
246 m_sheet->clearOwnerNode(); 246 m_sheet->clearOwnerNode();
247 m_sheet = 0; 247 m_sheet = nullptr;
248 } 248 }
249 249
250 // If we're in document teardown, then we don't need to do any notification of our sheet's removal. 250 // If we're in document teardown, then we don't need to do any notification of our sheet's removal.
251 if (document().isActive()) 251 if (document().isActive())
252 document().removedStyleSheet(removedSheet.get()); 252 document().removedStyleSheet(removedSheet.get());
253 } 253 }
254 254
255 } // namespace 255 } // namespace
OLDNEW
« no previous file with comments | « Source/core/dom/Position.cpp ('k') | Source/core/dom/Range.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698