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

Side by Side Diff: third_party/WebKit/Source/core/timing/PerformanceResourceTiming.h

Issue 2837943006: [WIP] Support PerformanceResourceTiming for Service Worker Navigation Preload (Closed)
Patch Set: clean up Created 3 years, 7 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2012 Intel Inc. All rights reserved. 3 * Copyright (C) 2012 Intel Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 double time_origin_; 114 double time_origin_;
115 RefPtr<ResourceLoadTiming> timing_; 115 RefPtr<ResourceLoadTiming> timing_;
116 double last_redirect_end_time_; 116 double last_redirect_end_time_;
117 double finish_time_; 117 double finish_time_;
118 unsigned long long transfer_size_; 118 unsigned long long transfer_size_;
119 unsigned long long encoded_body_size_; 119 unsigned long long encoded_body_size_;
120 unsigned long long decoded_body_size_; 120 unsigned long long decoded_body_size_;
121 bool did_reuse_connection_; 121 bool did_reuse_connection_;
122 bool allow_timing_details_; 122 bool allow_timing_details_;
123 bool allow_redirect_details_; 123 bool allow_redirect_details_;
124 bool allow_negative_value_;
124 }; 125 };
125 126
126 } // namespace blink 127 } // namespace blink
127 128
128 #endif // PerformanceResourceTiming_h 129 #endif // PerformanceResourceTiming_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698