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

Unified Diff: sky/engine/core/frame/FrameConsole.h

Issue 922893002: Merge the Sky Engine changes from the SkyDart branch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « sky/engine/core/frame/DOMWindowBase64.cpp ('k') | sky/engine/core/frame/FrameConsole.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/frame/FrameConsole.h
diff --git a/sky/engine/core/frame/FrameConsole.h b/sky/engine/core/frame/FrameConsole.h
index 6b47b47e71c490bd07f518b4039a82e1484a99da..408f1d6b70642e4654b97c3f1577a2dcb84d8048 100644
--- a/sky/engine/core/frame/FrameConsole.h
+++ b/sky/engine/core/frame/FrameConsole.h
@@ -29,7 +29,6 @@
#ifndef SKY_ENGINE_CORE_FRAME_FRAMECONSOLE_H_
#define SKY_ENGINE_CORE_FRAME_FRAMECONSOLE_H_
-#include "sky/engine/bindings/core/v8/ScriptState.h"
#include "sky/engine/core/frame/ConsoleTypes.h"
#include "sky/engine/platform/heap/Handle.h"
#include "sky/engine/wtf/Forward.h"
@@ -42,7 +41,7 @@ class ConsoleMessageStorage;
class Document;
class FrameHost;
class ResourceResponse;
-class ScriptCallStack;
+class LocalFrame;
// FrameConsole takes per-frame console messages and routes them up through the FrameHost to the ChromeClient and Inspector.
// It's meant as an abstraction around ChromeClient calls and the way that Blink core/ can add messages to the console.
@@ -58,20 +57,10 @@ public:
void reportResourceResponseReceived(Document*, unsigned long requestIdentifier, const ResourceResponse&);
- static String formatStackTraceString(const String& originalMessage, PassRefPtr<ScriptCallStack>);
-
- static void mute();
- static void unmute();
-
- ConsoleMessageStorage* messageStorage();
- void clearMessages();
-
private:
explicit FrameConsole(LocalFrame&);
LocalFrame& m_frame;
-
- OwnPtr<ConsoleMessageStorage> m_consoleMessageStorage;
};
} // namespace blink
« no previous file with comments | « sky/engine/core/frame/DOMWindowBase64.cpp ('k') | sky/engine/core/frame/FrameConsole.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698