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

Side by Side Diff: third_party/WebKit/Source/core/loader/resource/MultipartImageResourceParser.cpp

Issue 2558033002: Loading: move ImageResource and related classes to core/loader/resource (Closed)
Patch Set: rebase and format 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 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/fetch/MultipartImageResourceParser.h" 5 #include "core/loader/resource/MultipartImageResourceParser.h"
6 6
7 #include "platform/network/HTTPParsers.h" 7 #include "platform/network/HTTPParsers.h"
8 #include "wtf/NotFound.h" 8 #include "wtf/NotFound.h"
9 #include "wtf/text/WTFString.h" 9 #include "wtf/text/WTFString.h"
10 10
11 #include <algorithm> 11 #include <algorithm>
12 12
13 namespace blink { 13 namespace blink {
14 14
15 MultipartImageResourceParser::MultipartImageResourceParser( 15 MultipartImageResourceParser::MultipartImageResourceParser(
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 } 178 }
179 } 179 }
180 return boundaryPosition; 180 return boundaryPosition;
181 } 181 }
182 182
183 DEFINE_TRACE(MultipartImageResourceParser) { 183 DEFINE_TRACE(MultipartImageResourceParser) {
184 visitor->trace(m_client); 184 visitor->trace(m_client);
185 } 185 }
186 186
187 } // namespace blink 187 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698