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

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

Issue 2815053002: Rewrite references to "wtf/" to "platform/wtf/" in core/loader. (Closed)
Patch Set: Created 3 years, 8 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 17 matching lines...) Expand all
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/loader/DocumentLoader.h" 32 #include "core/loader/DocumentLoader.h"
33 #include "core/loader/FrameLoader.h" 33 #include "core/loader/FrameLoader.h"
34 #include "core/probe/CoreProbes.h" 34 #include "core/probe/CoreProbes.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/loader/fetch/ResourceResponse.h" 37 #include "platform/loader/fetch/ResourceResponse.h"
38 #include "wtf/CurrentTime.h" 38 #include "platform/wtf/CurrentTime.h"
39 #include "wtf/PtrUtil.h" 39 #include "platform/wtf/PtrUtil.h"
40 #include "wtf/text/CString.h" 40 #include "platform/wtf/text/CString.h"
41 41
42 namespace blink { 42 namespace blink {
43 43
44 // Always start progress at initialProgressValue. This helps provide feedback as 44 // Always start progress at initialProgressValue. This helps provide feedback as
45 // soon as a load starts. 45 // soon as a load starts.
46 static const double kInitialProgressValue = 0.1; 46 static const double kInitialProgressValue = 0.1;
47 47
48 static const int kProgressItemDefaultEstimatedLength = 1024 * 1024; 48 static const int kProgressItemDefaultEstimatedLength = 1024 * 1024;
49 49
50 static const double kProgressNotificationInterval = 0.02; 50 static const double kProgressNotificationInterval = 0.02;
(...skipping 183 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 = progress_items_.at(identifier); 235 ProgressItem* item = progress_items_.at(identifier);
236 if (!item) 236 if (!item)
237 return; 237 return;
238 238
239 item->estimated_length = item->bytes_received; 239 item->estimated_length = item->bytes_received;
240 MaybeSendProgress(); 240 MaybeSendProgress();
241 } 241 }
242 242
243 } // namespace blink 243 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698