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

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

Issue 2200273002: [DevTools] Cleanup mute exceptions, usecounter and deprecations in v8_inspector API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2205913002
Patch Set: Created 4 years, 4 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
index 0d94f890c35f371c9ffb7c80fbc5703899bb88b9..240614bdb975446c4cd1fb1f9c96da02dc989ee7 100644
--- a/third_party/WebKit/Source/core/inspector/ConsoleMessageStorage.h
+++ b/third_party/WebKit/Source/core/inspector/ConsoleMessageStorage.h
@@ -19,20 +19,16 @@ class CORE_EXPORT ConsoleMessageStorage : public GarbageCollected<ConsoleMessage
public:
ConsoleMessageStorage();
- bool addConsoleMessage(ExecutionContext*, ConsoleMessage*);
+ void addConsoleMessage(ExecutionContext*, ConsoleMessage*);
void clear();
- void mute();
- void unmute();
size_t size() const;
ConsoleMessage* at(size_t index) const;
int expiredCount() const;
- bool isMuted() const;
DECLARE_TRACE();
private:
int m_expiredCount;
- int m_mutedCount;
HeapDeque<Member<ConsoleMessage>> m_messages;
};

Powered by Google App Engine
This is Rietveld 408576698