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

Unified Diff: Source/core/workers/SharedWorker.h

Issue 111743007: Add the SharedWorker.workerStart property for high resolution timers. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Code style compliance Created 6 years, 11 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/workers/SharedWorker.h
diff --git a/Source/core/workers/SharedWorker.h b/Source/core/workers/SharedWorker.h
index 8f7902a68756b861d1f52088d4516959d902c109..71ee75959bbf50a68d638b5a845e2ec973612546 100644
--- a/Source/core/workers/SharedWorker.h
+++ b/Source/core/workers/SharedWorker.h
@@ -33,12 +33,13 @@
#define SharedWorker_h
#include "core/workers/AbstractWorker.h"
+#include "platform/Supplementable.h"
namespace WebCore {
class ExceptionState;
-class SharedWorker : public AbstractWorker, public ScriptWrappable {
+class SharedWorker : public AbstractWorker, public ScriptWrappable, public Supplementable<SharedWorker> {
public:
static PassRefPtr<SharedWorker> create(ExecutionContext*, const String& url, const String& name, ExceptionState&);
virtual ~SharedWorker();

Powered by Google App Engine
This is Rietveld 408576698