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

Unified Diff: Source/core/page/Performance.h

Issue 14246023: Unprefix User Timing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix tests Created 7 years, 8 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: Source/core/page/Performance.h
diff --git a/Source/core/page/Performance.h b/Source/core/page/Performance.h
index 19f6f169d6249922156785771eb362671f9b76eb..7a84250e1cfbf10540211bbade946412e9c847ee 100644
--- a/Source/core/page/Performance.h
+++ b/Source/core/page/Performance.h
@@ -64,9 +64,9 @@ public:
PerformanceTiming* timing() const;
double now() const;
- Vector<RefPtr<PerformanceEntry> > webkitGetEntries() const;
- Vector<RefPtr<PerformanceEntry> > webkitGetEntriesByType(const String& entryType);
- Vector<RefPtr<PerformanceEntry> > webkitGetEntriesByName(const String& name, const String& entryType);
+ Vector<RefPtr<PerformanceEntry> > getEntries() const;
+ Vector<RefPtr<PerformanceEntry> > getEntriesByType(const String& entryType);
+ Vector<RefPtr<PerformanceEntry> > getEntriesByName(const String& name, const String& entryType);
void webkitClearResourceTimings();
void webkitSetResourceTimingBufferSize(unsigned int);
@@ -78,11 +78,11 @@ public:
using RefCounted<Performance>::ref;
using RefCounted<Performance>::deref;
- void webkitMark(const String& markName, ExceptionCode&);
- void webkitClearMarks(const String& markName);
+ void mark(const String& markName, ExceptionCode&);
+ void clearMarks(const String& markName);
- void webkitMeasure(const String& measureName, const String& startMark, const String& endMark, ExceptionCode&);
- void webkitClearMeasures(const String& measureName);
+ void measure(const String& measureName, const String& startMark, const String& endMark, ExceptionCode&);
+ void clearMeasures(const String& measureName);
private:
explicit Performance(Frame*);

Powered by Google App Engine
This is Rietveld 408576698