aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/performancetiming.rs
diff options
context:
space:
mode:
authorGulshan Singh <gulshan@umich.edu>2014-05-01 16:23:32 -0400
committerGulshan Singh <gulshan@umich.edu>2014-05-07 17:30:33 -0400
commitfb0c433b701f19c52cafabc45f9469cbb9706de9 (patch)
treea45ab4ec0e4f7d96268514ecea8607148a8412e7 /src/components/script/dom/performancetiming.rs
parent0ab3444af9f0a1c8f7265308c0bf7c20e18df9f5 (diff)
downloadservo-fb0c433b701f19c52cafabc45f9469cbb9706de9.tar.gz
servo-fb0c433b701f19c52cafabc45f9469cbb9706de9.zip
Add Performance object to Window and implement Performance::Now()
Diffstat (limited to 'src/components/script/dom/performancetiming.rs')
-rw-r--r--src/components/script/dom/performancetiming.rs57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/components/script/dom/performancetiming.rs b/src/components/script/dom/performancetiming.rs
new file mode 100644
index 00000000000..7065c5f33b6
--- /dev/null
+++ b/src/components/script/dom/performancetiming.rs
@@ -0,0 +1,57 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+use dom::bindings::codegen::BindingDeclarations::PerformanceTimingBinding;
+use dom::bindings::js::{JSRef, Temporary};
+use dom::bindings::utils::{Reflectable, Reflector, reflect_dom_object};
+use dom::window::Window;
+
+#[deriving(Encodable)]
+pub struct PerformanceTiming {
+ pub reflector_: Reflector,
+ pub navigationStart: u64,
+ pub navigationStartPrecise: f64,
+}
+
+impl PerformanceTiming {
+ pub fn new_inherited(navStart: u64, navStartPrecise: f64)
+ -> PerformanceTiming {
+ PerformanceTiming {
+ reflector_: Reflector::new(),
+ navigationStart: navStart,
+ navigationStartPrecise: navStartPrecise,
+ }
+ }
+
+ pub fn new(window: &JSRef<Window>) -> Temporary<PerformanceTiming> {
+ let timing = PerformanceTiming::new_inherited(window.navigationStart,
+ window.navigationStartPrecise);
+ reflect_dom_object(~timing, window, PerformanceTimingBinding::Wrap)
+ }
+}
+
+pub trait PerformanceTimingMethods {
+ fn NavigationStart(&self) -> u64;
+ fn NavigationStartPrecise(&self) -> f64;
+}
+
+impl<'a> PerformanceTimingMethods for JSRef<'a, PerformanceTiming> {
+ fn NavigationStart(&self) -> u64 {
+ self.navigationStart
+ }
+
+ fn NavigationStartPrecise(&self) -> f64 {
+ self.navigationStartPrecise
+ }
+}
+
+impl Reflectable for PerformanceTiming {
+ fn reflector<'a>(&'a self) -> &'a Reflector {
+ &self.reflector_
+ }
+
+ fn mut_reflector<'a>(&'a mut self) -> &'a mut Reflector {
+ &mut self.reflector_
+ }
+}