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

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

Issue 2746113002: platform/loader: move network/Resource* to loader/fetch (Closed)
Patch Set: git rebase master Created 3 years, 9 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 16 matching lines...) Expand all
27 27
28 #include "core/frame/FrameView.h" 28 #include "core/frame/FrameView.h"
29 #include "core/frame/LocalFrame.h" 29 #include "core/frame/LocalFrame.h"
30 #include "core/frame/LocalFrameClient.h" 30 #include "core/frame/LocalFrameClient.h"
31 #include "core/frame/Settings.h" 31 #include "core/frame/Settings.h"
32 #include "core/inspector/InspectorInstrumentation.h" 32 #include "core/inspector/InspectorInstrumentation.h"
33 #include "core/loader/DocumentLoader.h" 33 #include "core/loader/DocumentLoader.h"
34 #include "core/loader/FrameLoader.h" 34 #include "core/loader/FrameLoader.h"
35 #include "platform/loader/fetch/Resource.h" 35 #include "platform/loader/fetch/Resource.h"
36 #include "platform/loader/fetch/ResourceFetcher.h" 36 #include "platform/loader/fetch/ResourceFetcher.h"
37 #include "platform/network/ResourceResponse.h" 37 #include "platform/loader/fetch/ResourceResponse.h"
38 #include "wtf/CurrentTime.h" 38 #include "wtf/CurrentTime.h"
39 #include "wtf/PtrUtil.h" 39 #include "wtf/PtrUtil.h"
40 #include "wtf/text/CString.h" 40 #include "wtf/text/CString.h"
41 41
42 using namespace std; 42 using namespace std;
43 43
44 namespace blink { 44 namespace blink {
45 45
46 // Always start progress at initialProgressValue. This helps provide feedback as 46 // Always start progress at initialProgressValue. This helps provide feedback as
47 // soon as a load starts. 47 // soon as a load starts.
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 void ProgressTracker::completeProgress(unsigned long identifier) { 234 void ProgressTracker::completeProgress(unsigned long identifier) {
235 ProgressItem* item = m_progressItems.at(identifier); 235 ProgressItem* item = m_progressItems.at(identifier);
236 if (!item) 236 if (!item)
237 return; 237 return;
238 238
239 item->estimatedLength = item->bytesReceived; 239 item->estimatedLength = item->bytesReceived;
240 maybeSendProgress(); 240 maybeSendProgress();
241 } 241 }
242 242
243 } // namespace blink 243 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/ProgressTracker.h ('k') | third_party/WebKit/Source/core/loader/ProgressTrackerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698