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

Unified Diff: third_party/WebKit/Source/core/inspector/ConsoleMessageStorage.h

Issue 2035653006: [DevTools] Move Console to v8 inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: improved api a bit Created 4 years, 6 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/inspector/ConsoleMessageStorage.h
diff --git a/third_party/WebKit/Source/core/inspector/ConsoleMessageStorage.h b/third_party/WebKit/Source/core/inspector/ConsoleMessageStorage.h
deleted file mode 100644
index d79fd35f3740c3eaf4ec7b50e1fd98e1de899ce6..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/inspector/ConsoleMessageStorage.h
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2014 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 ConsoleMessageStorage_h
-#define ConsoleMessageStorage_h
-
-#include "core/CoreExport.h"
-#include "core/inspector/ConsoleMessage.h"
-#include "platform/heap/Handle.h"
-#include "wtf/Forward.h"
-
-namespace blink {
-
-class ExecutionContext;
-class FrameHost;
-class LocalDOMWindow;
-class WorkerGlobalScopeProxy;
-
-class ConsoleMessageStorage final : public GarbageCollected<ConsoleMessageStorage> {
- WTF_MAKE_NONCOPYABLE(ConsoleMessageStorage);
-public:
- static ConsoleMessageStorage* create()
- {
- return new ConsoleMessageStorage();
- }
-
- void reportMessage(ExecutionContext*, ConsoleMessage*);
- void clear(ExecutionContext*);
-
- CORE_EXPORT Vector<unsigned> argumentCounts() const;
-
- void frameWindowDiscarded(LocalDOMWindow*);
-
- size_t size() const;
- ConsoleMessage* at(size_t index) const;
-
- int expiredCount() const;
-
- DECLARE_TRACE();
-
-private:
- ConsoleMessageStorage();
-
- int m_expiredCount;
- HeapDeque<Member<ConsoleMessage>> m_messages;
-};
-
-} // namespace blink
-
-#endif // ConsoleMessageStorage_h

Powered by Google App Engine
This is Rietveld 408576698