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

Side by Side Diff: base/time/time.h

Issue 1782053004: Change how the quota system computes the total poolsize for temporary storage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 3 years, 10 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
« no previous file with comments | « ash/shell/content/client/shell_content_browser_client.cc ('k') | base/time/time.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Time represents an absolute point in coordinated universal time (UTC), 5 // Time represents an absolute point in coordinated universal time (UTC),
6 // internally represented as microseconds (s/1,000,000) since the Windows epoch 6 // internally represented as microseconds (s/1,000,000) since the Windows epoch
7 // (1601-01-01 00:00:00 UTC). System-dependent clock interface routines are 7 // (1601-01-01 00:00:00 UTC). System-dependent clock interface routines are
8 // defined in time_PLATFORM.cc. Note that values for Time may skew and jump 8 // defined in time_PLATFORM.cc. Note that values for Time may skew and jump
9 // around as the operating system makes adjustments to synchronize (e.g., with 9 // around as the operating system makes adjustments to synchronize (e.g., with
10 // NTP servers). Thus, client code that uses the Time class must account for 10 // NTP servers). Thus, client code that uses the Time class must account for
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 123
124 // Converts an integer value representing TimeDelta to a class. This is used 124 // Converts an integer value representing TimeDelta to a class. This is used
125 // when deserializing a |TimeDelta| structure, using a value known to be 125 // when deserializing a |TimeDelta| structure, using a value known to be
126 // compatible. It is not provided as a constructor because the integer type 126 // compatible. It is not provided as a constructor because the integer type
127 // may be unclear from the perspective of a caller. 127 // may be unclear from the perspective of a caller.
128 static TimeDelta FromInternalValue(int64_t delta) { return TimeDelta(delta); } 128 static TimeDelta FromInternalValue(int64_t delta) { return TimeDelta(delta); }
129 129
130 // Returns the maximum time delta, which should be greater than any reasonable 130 // Returns the maximum time delta, which should be greater than any reasonable
131 // time delta we might compare it to. Adding or subtracting the maximum time 131 // time delta we might compare it to. Adding or subtracting the maximum time
132 // delta to a time or another time delta has an undefined result. 132 // delta to a time or another time delta has an undefined result.
133 static TimeDelta Max(); 133 static constexpr TimeDelta Max();
134 134
135 // Returns the internal numeric value of the TimeDelta object. Please don't 135 // Returns the internal numeric value of the TimeDelta object. Please don't
136 // use this and do arithmetic on it, as it is more error prone than using the 136 // use this and do arithmetic on it, as it is more error prone than using the
137 // provided operators. 137 // provided operators.
138 // For serializing, use FromInternalValue to reconstitute. 138 // For serializing, use FromInternalValue to reconstitute.
139 int64_t ToInternalValue() const { return delta_; } 139 int64_t ToInternalValue() const { return delta_; }
140 140
141 // Returns the magnitude (absolute value) of this TimeDelta. 141 // Returns the magnitude (absolute value) of this TimeDelta.
142 TimeDelta magnitude() const { 142 TimeDelta magnitude() const {
143 // Some toolchains provide an incomplete C++11 implementation and lack an 143 // Some toolchains provide an incomplete C++11 implementation and lack an
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 constexpr TimeDelta TimeDelta::FromMillisecondsD(double ms) { 652 constexpr TimeDelta TimeDelta::FromMillisecondsD(double ms) {
653 return FromDouble(ms * Time::kMicrosecondsPerMillisecond); 653 return FromDouble(ms * Time::kMicrosecondsPerMillisecond);
654 } 654 }
655 655
656 // static 656 // static
657 constexpr TimeDelta TimeDelta::FromMicroseconds(int64_t us) { 657 constexpr TimeDelta TimeDelta::FromMicroseconds(int64_t us) {
658 return TimeDelta(us); 658 return TimeDelta(us);
659 } 659 }
660 660
661 // static 661 // static
662 constexpr TimeDelta TimeDelta::Max() {
663 return TimeDelta(std::numeric_limits<int64_t>::max());
664 }
665
666 // static
662 constexpr TimeDelta TimeDelta::FromDouble(double value) { 667 constexpr TimeDelta TimeDelta::FromDouble(double value) {
663 // TODO(crbug.com/612601): Use saturated_cast<int64_t>(value) once we sort out 668 // TODO(crbug.com/612601): Use saturated_cast<int64_t>(value) once we sort out
664 // the Min() behavior. 669 // the Min() behavior.
665 return value > std::numeric_limits<int64_t>::max() 670 return value > std::numeric_limits<int64_t>::max()
666 ? Max() 671 ? Max()
667 : value < -std::numeric_limits<int64_t>::max() 672 : value < -std::numeric_limits<int64_t>::max()
668 ? -Max() 673 ? -Max()
669 : TimeDelta(static_cast<int64_t>(value)); 674 : TimeDelta(static_cast<int64_t>(value));
670 } 675 }
671 676
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 static void WaitUntilInitializedWin(); 844 static void WaitUntilInitializedWin();
840 #endif 845 #endif
841 }; 846 };
842 847
843 // For logging use only. 848 // For logging use only.
844 BASE_EXPORT std::ostream& operator<<(std::ostream& os, ThreadTicks time_ticks); 849 BASE_EXPORT std::ostream& operator<<(std::ostream& os, ThreadTicks time_ticks);
845 850
846 } // namespace base 851 } // namespace base
847 852
848 #endif // BASE_TIME_TIME_H_ 853 #endif // BASE_TIME_TIME_H_
OLDNEW
« no previous file with comments | « ash/shell/content/client/shell_content_browser_client.cc ('k') | base/time/time.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698