| Index: third_party/WebKit/Source/core/workers/WorkerReportingProxy.h
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h b/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h
|
| index d1f3a826ad7200823f6ac97644b61e7047753958..019e41586b99bda5b585579689ca3c9f4fc023fe 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h
|
| @@ -32,6 +32,7 @@
|
| #define WorkerReportingProxy_h
|
|
|
| #include "core/CoreExport.h"
|
| +#include "core/frame/UseCounter.h"
|
| #include "core/inspector/ConsoleTypes.h"
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/Forward.h"
|
| @@ -48,6 +49,8 @@ class CORE_EXPORT WorkerReportingProxy {
|
| public:
|
| virtual ~WorkerReportingProxy() {}
|
|
|
| + virtual void countFeature(UseCounter::Feature) = 0;
|
| + virtual void countDeprecation(UseCounter::Feature) = 0;
|
| virtual void reportException(const String& errorMessage,
|
| std::unique_ptr<SourceLocation>,
|
| int exceptionId) = 0;
|
|
|