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

Unified Diff: content/common/inter_process_time_ticks_converter.h

Issue 12094085: LoadTiming in net part 7: Hooking it all up (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: sync Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: content/common/inter_process_time_ticks_converter.h
===================================================================
--- content/common/inter_process_time_ticks_converter.h (revision 190428)
+++ content/common/inter_process_time_ticks_converter.h (working copy)
@@ -55,14 +55,14 @@
// Returns the value within the local's bounds that correlates to
// |remote_ms|.
- LocalTimeTicks ToLocalTimeTicks(const RemoteTimeTicks& remote_ms);
+ LocalTimeTicks ToLocalTimeTicks(const RemoteTimeTicks& remote_ms) const;
// Returns the equivalent delta after applying remote-to-local scaling to
// |remote_delta|.
- LocalTimeDelta ToLocalTimeDelta(const RemoteTimeDelta& remote_delta);
+ LocalTimeDelta ToLocalTimeDelta(const RemoteTimeDelta& remote_delta) const;
private:
- int64 Convert(int64 value);
+ int64 Convert(int64 value) const;
// The local time which |remote_lower_bound_| is mapped to.
int64 local_base_time_;
« no previous file with comments | « content/browser/loader/sync_resource_handler.cc ('k') | content/common/inter_process_time_ticks_converter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698