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

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

Issue 2509143002: Add Prerender type to NavigationType for nav timing 2 (Closed)
Patch Set: synced client Created 4 years 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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 24 matching lines...) Expand all
35 #include "core/CoreExport.h" 35 #include "core/CoreExport.h"
36 #include "core/frame/DOMWindowProperty.h" 36 #include "core/frame/DOMWindowProperty.h"
37 #include "platform/heap/Handle.h" 37 #include "platform/heap/Handle.h"
38 38
39 namespace blink { 39 namespace blink {
40 40
41 class LocalFrame; 41 class LocalFrame;
42 class ScriptState; 42 class ScriptState;
43 class ScriptValue; 43 class ScriptValue;
44 44
45 // Legacy support for NT1(https://www.w3.org/TR/navigation-timing/).
45 class CORE_EXPORT PerformanceNavigation final 46 class CORE_EXPORT PerformanceNavigation final
46 : public GarbageCollected<PerformanceNavigation>, 47 : public GarbageCollected<PerformanceNavigation>,
47 public ScriptWrappable, 48 public ScriptWrappable,
48 public DOMWindowProperty { 49 public DOMWindowProperty {
49 DEFINE_WRAPPERTYPEINFO(); 50 DEFINE_WRAPPERTYPEINFO();
50 USING_GARBAGE_COLLECTED_MIXIN(PerformanceNavigation); 51 USING_GARBAGE_COLLECTED_MIXIN(PerformanceNavigation);
51 52
52 public: 53 public:
53 static PerformanceNavigation* create(LocalFrame* frame) { 54 static PerformanceNavigation* create(LocalFrame* frame) {
54 return new PerformanceNavigation(frame); 55 return new PerformanceNavigation(frame);
(...skipping 13 matching lines...) Expand all
68 69
69 DECLARE_VIRTUAL_TRACE(); 70 DECLARE_VIRTUAL_TRACE();
70 71
71 private: 72 private:
72 explicit PerformanceNavigation(LocalFrame*); 73 explicit PerformanceNavigation(LocalFrame*);
73 }; 74 };
74 75
75 } // namespace blink 76 } // namespace blink
76 77
77 #endif // PerformanceNavigation_h 78 #endif // PerformanceNavigation_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698