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

Side by Side Diff: Source/core/loader/ImageLoader.cpp

Issue 781673002: Use C++11 range-based loop for core/xml and core/loader (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: remove unnecessary curly brackets Created 5 years, 11 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 | « Source/core/loader/FrameLoader.cpp ('k') | Source/core/xml/XPathNodeSet.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 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010 Apple Inc. All rights reserv ed. 4 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010 Apple Inc. All rights reserv ed.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 { 568 {
569 if (m_loadDelayCounter) 569 if (m_loadDelayCounter)
570 m_loadDelayCounter->documentChanged(m_element->document()); 570 m_loadDelayCounter->documentChanged(m_element->document());
571 clearFailedLoadURL(); 571 clearFailedLoadURL();
572 setImage(0); 572 setImage(0);
573 } 573 }
574 574
575 void ImageLoader::sourceImageChanged() 575 void ImageLoader::sourceImageChanged()
576 { 576 {
577 #if ENABLE(OILPAN) 577 #if ENABLE(OILPAN)
578 PersistentHeapHashMap<WeakMember<ImageLoaderClient>, OwnPtr<ImageLoaderClien tRemover> >::iterator end = m_clients.end(); 578 for (auto& client : m_clients)
579 for (PersistentHeapHashMap<WeakMember<ImageLoaderClient>, OwnPtr<ImageLoader ClientRemover> >::iterator it = m_clients.begin(); it != end; ++it) { 579 client.key->notifyImageSourceChanged();
580 it->key->notifyImageSourceChanged();
581 }
582 #else 580 #else
583 HashSet<ImageLoaderClient*>::iterator end = m_clients.end(); 581 for (auto& client : m_clients) {
584 for (HashSet<ImageLoaderClient*>::iterator it = m_clients.begin(); it != end ; ++it) { 582 ImageLoaderClient* handle = client;
585 ImageLoaderClient* handle = *it;
586 handle->notifyImageSourceChanged(); 583 handle->notifyImageSourceChanged();
587 } 584 }
588 #endif 585 #endif
589 } 586 }
590 587
591 #if ENABLE(OILPAN) 588 #if ENABLE(OILPAN)
592 ImageLoader::ImageLoaderClientRemover::~ImageLoaderClientRemover() 589 ImageLoader::ImageLoaderClientRemover::~ImageLoaderClientRemover()
593 { 590 {
594 m_loader.willRemoveClient(m_client); 591 m_loader.willRemoveClient(m_client);
595 } 592 }
596 #endif 593 #endif
597 } 594 }
OLDNEW
« no previous file with comments | « Source/core/loader/FrameLoader.cpp ('k') | Source/core/xml/XPathNodeSet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698