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

Unified Diff: webkit/pending/ExceptionContext.h

Issue 8947: Fix the JSC build.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 2 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: webkit/pending/ExceptionContext.h
===================================================================
--- webkit/pending/ExceptionContext.h (revision 4241)
+++ webkit/pending/ExceptionContext.h (working copy)
@@ -36,7 +36,7 @@
#include "ScriptController.h"
#if USE(JSC)
-namespace KJS {
+namespace JSC {
class ExecState;
}
#endif
@@ -58,8 +58,8 @@
#if USE(V8)
ExceptionContext();
#elif USE(JSC)
- ExceptionContext(KJS::ExecState* exec) : m_exec(exec) {}
- KJS::ExecState* exec() const { return m_exec; }
+ ExceptionContext(JSC::ExecState* exec) : m_exec(exec) {}
+ JSC::ExecState* exec() const { return m_exec; }
#endif
~ExceptionContext() {}
@@ -77,7 +77,7 @@
JSException m_exception;
ExceptionCatcher* m_exceptionCatcher;
#elif USE(JSC)
- KJS::ExecState* m_exec;
+ JSC::ExecState* m_exec;
#endif
};

Powered by Google App Engine
This is Rietveld 408576698