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

Unified Diff: third_party/WebKit/Source/modules/worklet/WorkletConsole.h

Issue 1859293002: [DevTools] Move Console to v8_inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 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: third_party/WebKit/Source/modules/worklet/WorkletConsole.h
diff --git a/third_party/WebKit/Source/modules/worklet/WorkletConsole.h b/third_party/WebKit/Source/modules/worklet/WorkletConsole.h
deleted file mode 100644
index d25a564a86998d13272c55a6bd0d013b04b877da..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/modules/worklet/WorkletConsole.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef WorkletConsole_h
-#define WorkletConsole_h
-
-#include "core/frame/ConsoleBase.h"
-#include "core/frame/ConsoleTypes.h"
-#include "core/inspector/ConsoleAPITypes.h"
-#include "platform/heap/Handle.h"
-
-namespace blink {
-
-class ConsoleMessage;
-class WorkletGlobalScope;
-
-class WorkletConsole final : public ConsoleBase {
- DEFINE_WRAPPERTYPEINFO();
-public:
- static WorkletConsole* create(WorkletGlobalScope* scope)
- {
- return new WorkletConsole(scope);
- }
- ~WorkletConsole() override;
-
- DECLARE_VIRTUAL_TRACE();
-
-protected:
- ExecutionContext* context() final;
- void reportMessageToConsole(ConsoleMessage*) final;
-
-private:
- explicit WorkletConsole(WorkletGlobalScope*);
-
- Member<WorkletGlobalScope> m_scope;
-};
-
-} // namespace blink
-
-#endif // WorkletConsole_h

Powered by Google App Engine
This is Rietveld 408576698