| Summary: | Get rid of monotonicallyIncreasingTimeMS and start using std::chrono instead | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Anders Carlsson <andersca> | ||||||
| Component: | New Bugs | Assignee: | Anders Carlsson <andersca> | ||||||
| Status: | RESOLVED FIXED | ||||||||
| Severity: | Normal | CC: | benjamin, cmarcelo, commit-queue, esprehn+autocc, kangil.han | ||||||
| Priority: | P2 | ||||||||
| Version: | 528+ (Nightly build) | ||||||||
| Hardware: | Unspecified | ||||||||
| OS: | Unspecified | ||||||||
| Attachments: |
|
||||||||
|
Description
Anders Carlsson
2014-01-24 11:29:33 PST
Created attachment 222129 [details]
Patch
Attachment 222129 [details] did not pass style-queue:
ERROR: Source/WTF/wtf/StdLibExtras.h:405: Do not use 'using namespace std::literals::chrono_literals;'. [build/using_namespace] [4]
ERROR: Source/WTF/wtf/StdLibExtras.h:405: std::literals::chrono_literals is incorrectly named. Don't use underscores in your identifier names. [readability/naming/underscores] [4]
Total errors found: 2 in 15 files
If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 222129 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=222129&action=review > Source/WTF/wtf/StdLibExtras.h:380 > + namespace literals { > + namespace chrono_literals { > + CONSTEXPR inline chrono::seconds operator"" _s(unsigned long long s) We don't usually indent namespace content. > Source/WebCore/page/Settings.cpp:149 > -static const int layoutScheduleThreshold = 250; > +static const auto layoutScheduleThreshold = 250_ms; nice! Created attachment 222133 [details]
Patch
Attachment 222133 [details] did not pass style-queue:
ERROR: Source/WTF/wtf/StdLibExtras.h:408: Do not use 'using namespace std::literals::chrono_literals;'. [build/using_namespace] [4]
ERROR: Source/WTF/wtf/StdLibExtras.h:408: std::literals::chrono_literals is incorrectly named. Don't use underscores in your identifier names. [readability/naming/underscores] [4]
Total errors found: 2 in 15 files
If any of these errors are false positives, please file a bug against check-webkit-style.
Committed r162716: <http://trac.webkit.org/changeset/162716> |