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

Unified Diff: Source/bindings/core/v8/PageScriptDebugServer.h

Issue 638813002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/bindings (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « Source/bindings/core/v8/ExceptionStatePlaceholder.h ('k') | Source/bindings/core/v8/RetainedDOMInfo.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/PageScriptDebugServer.h
diff --git a/Source/bindings/core/v8/PageScriptDebugServer.h b/Source/bindings/core/v8/PageScriptDebugServer.h
index 95a7911742cfe8bc07aa0a8447429b1e1919d960..9ad086aebda7c83877faff0e1438602c89cd1b70 100644
--- a/Source/bindings/core/v8/PageScriptDebugServer.h
+++ b/Source/bindings/core/v8/PageScriptDebugServer.h
@@ -41,7 +41,7 @@ class Page;
class ScriptPreprocessor;
class ScriptSourceCode;
-class PageScriptDebugServer FINAL : public ScriptDebugServer {
+class PageScriptDebugServer final : public ScriptDebugServer {
WTF_MAKE_NONCOPYABLE(PageScriptDebugServer);
public:
static PageScriptDebugServer& shared();
@@ -61,25 +61,25 @@ public:
};
void setClientMessageLoop(PassOwnPtr<ClientMessageLoop>);
- virtual void compileScript(ScriptState*, const String& expression, const String& sourceURL, String* scriptId, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace) OVERRIDE;
- virtual void clearCompiledScripts() OVERRIDE;
- virtual void runScript(ScriptState*, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace) OVERRIDE;
- virtual void setPreprocessorSource(const String&) OVERRIDE;
- virtual void preprocessBeforeCompile(const v8::Debug::EventDetails&) OVERRIDE;
- virtual PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode&) OVERRIDE;
- virtual String preprocessEventListener(LocalFrame*, const String& source, const String& url, const String& functionName) OVERRIDE;
- virtual void clearPreprocessor() OVERRIDE;
+ virtual void compileScript(ScriptState*, const String& expression, const String& sourceURL, String* scriptId, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace) override;
+ virtual void clearCompiledScripts() override;
+ virtual void runScript(ScriptState*, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace) override;
+ virtual void setPreprocessorSource(const String&) override;
+ virtual void preprocessBeforeCompile(const v8::Debug::EventDetails&) override;
+ virtual PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode&) override;
+ virtual String preprocessEventListener(LocalFrame*, const String& source, const String& url, const String& functionName) override;
+ virtual void clearPreprocessor() override;
- virtual void muteWarningsAndDeprecations() OVERRIDE;
- virtual void unmuteWarningsAndDeprecations() OVERRIDE;
+ virtual void muteWarningsAndDeprecations() override;
+ virtual void unmuteWarningsAndDeprecations() override;
private:
PageScriptDebugServer();
virtual ~PageScriptDebugServer();
- virtual ScriptDebugListener* getDebugListenerForContext(v8::Handle<v8::Context>) OVERRIDE;
- virtual void runMessageLoopOnPause(v8::Handle<v8::Context>) OVERRIDE;
- virtual void quitMessageLoopOnPause() OVERRIDE;
+ virtual ScriptDebugListener* getDebugListenerForContext(v8::Handle<v8::Context>) override;
+ virtual void runMessageLoopOnPause(v8::Handle<v8::Context>) override;
+ virtual void quitMessageLoopOnPause() override;
typedef HashMap<Page*, ScriptDebugListener*> ListenersMap;
ListenersMap m_listenersMap;
« no previous file with comments | « Source/bindings/core/v8/ExceptionStatePlaceholder.h ('k') | Source/bindings/core/v8/RetainedDOMInfo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698