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

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

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 WTF_MAKE_NONCOPYABLE(ProgressItem); USING_FAST_MALLOC(ProgressItem); 56 WTF_MAKE_NONCOPYABLE(ProgressItem); USING_FAST_MALLOC(ProgressItem);
57 public: 57 public:
58 ProgressItem(long long length) 58 ProgressItem(long long length)
59 : bytesReceived(0) 59 : bytesReceived(0)
60 , estimatedLength(length) { } 60 , estimatedLength(length) { }
61 61
62 long long bytesReceived; 62 long long bytesReceived;
63 long long estimatedLength; 63 long long estimatedLength;
64 }; 64 };
65 65
66 PassOwnPtrWillBeRawPtr<ProgressTracker> ProgressTracker::create(LocalFrame* fram e) 66 RawPtr<ProgressTracker> ProgressTracker::create(LocalFrame* frame)
67 { 67 {
68 return adoptPtrWillBeNoop(new ProgressTracker(frame)); 68 return new ProgressTracker(frame);
69 } 69 }
70 70
71 ProgressTracker::ProgressTracker(LocalFrame* frame) 71 ProgressTracker::ProgressTracker(LocalFrame* frame)
72 : m_frame(frame) 72 : m_frame(frame)
73 , m_mainResourceIdentifier(0) 73 , m_mainResourceIdentifier(0)
74 , m_totalPageAndResourceBytesToLoad(0) 74 , m_totalPageAndResourceBytesToLoad(0)
75 , m_totalBytesReceived(0) 75 , m_totalBytesReceived(0)
76 , m_lastNotifiedProgressValue(0) 76 , m_lastNotifiedProgressValue(0)
77 , m_lastNotifiedProgressTime(0) 77 , m_lastNotifiedProgressTime(0)
78 , m_progressNotificationInterval(0.02) 78 , m_progressNotificationInterval(0.02)
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 return; 272 return;
273 273
274 // Adjust the total expected bytes to account for any overage/underage. 274 // Adjust the total expected bytes to account for any overage/underage.
275 long long delta = item->bytesReceived - item->estimatedLength; 275 long long delta = item->bytesReceived - item->estimatedLength;
276 m_totalPageAndResourceBytesToLoad += delta; 276 m_totalPageAndResourceBytesToLoad += delta;
277 277
278 m_progressItems.remove(identifier); 278 m_progressItems.remove(identifier);
279 } 279 }
280 280
281 } // namespace blink 281 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698