OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |