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

Unified Diff: third_party/WebKit/Source/core/timing/PerformanceEntry.h

Issue 2962113002: Updates to Server-Timing in accordance with with spec changes (Closed)
Patch Set: fix web-platform-tests Created 3 years, 5 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: third_party/WebKit/Source/core/timing/PerformanceEntry.h
diff --git a/third_party/WebKit/Source/core/timing/PerformanceEntry.h b/third_party/WebKit/Source/core/timing/PerformanceEntry.h
index 9067ec9f93cf67e8df66006f5fa04f3f9ed708a5..2f74ff361a7cb415e35889d87daaf312eb112515 100644
--- a/third_party/WebKit/Source/core/timing/PerformanceEntry.h
+++ b/third_party/WebKit/Source/core/timing/PerformanceEntry.h
@@ -65,8 +65,7 @@ class CORE_EXPORT PerformanceEntry
kResource = 1 << 5,
kLongTask = 1 << 6,
kTaskAttribution = 1 << 7,
- kPaint = 1 << 8,
- kServer = 1 << 9
+ kPaint = 1 << 8
};
String name() const;
@@ -102,7 +101,7 @@ class CORE_EXPORT PerformanceEntry
const String& entry_type,
double start_time,
double finish_time);
- virtual void BuildJSONValue(V8ObjectBuilder&) const;
+ virtual void BuildJSONValue(ScriptState*, V8ObjectBuilder&) const;
private:
const String name_;
« no previous file with comments | « third_party/WebKit/Source/core/timing/PerformanceBase.cpp ('k') | third_party/WebKit/Source/core/timing/PerformanceEntry.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698