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

Side by Side Diff: Source/bindings/core/v8/V8BindingForTesting.h

Issue 1236473002: Fix virtual/override/final usage in Source/bindings/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8BindingForTesting_h 5 #ifndef V8BindingForTesting_h
6 #define V8BindingForTesting_h 6 #define V8BindingForTesting_h
7 7
8 #include "bindings/core/v8/DOMWrapperWorld.h" 8 #include "bindings/core/v8/DOMWrapperWorld.h"
9 #include "bindings/core/v8/ScriptState.h" 9 #include "bindings/core/v8/ScriptState.h"
10 #include "wtf/Forward.h" 10 #include "wtf/Forward.h"
11 11
12 #include <v8.h> 12 #include <v8.h>
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class ScriptStateForTesting : public ScriptState { 16 class ScriptStateForTesting : public ScriptState {
17 public: 17 public:
18 static PassRefPtr<ScriptStateForTesting> create(v8::Local<v8::Context>, Pass RefPtr<DOMWrapperWorld>); 18 static PassRefPtr<ScriptStateForTesting> create(v8::Local<v8::Context>, Pass RefPtr<DOMWrapperWorld>);
19 virtual ExecutionContext* executionContext() const override; 19 ExecutionContext* executionContext() const override;
20 virtual void setExecutionContext(ExecutionContext*) override; 20 void setExecutionContext(ExecutionContext*) override;
21 private: 21 private:
22 ScriptStateForTesting(v8::Local<v8::Context>, PassRefPtr<DOMWrapperWorld>); 22 ScriptStateForTesting(v8::Local<v8::Context>, PassRefPtr<DOMWrapperWorld>);
23 ExecutionContext* m_executionContext; 23 ExecutionContext* m_executionContext;
24 }; 24 };
25 25
26 class V8TestingScope { 26 class V8TestingScope {
27 public: 27 public:
28 explicit V8TestingScope(v8::Isolate*); 28 explicit V8TestingScope(v8::Isolate*);
29 ScriptState* scriptState() const; 29 ScriptState* scriptState() const;
30 v8::Isolate* isolate() const; 30 v8::Isolate* isolate() const;
31 v8::Local<v8::Context> context() const; 31 v8::Local<v8::Context> context() const;
32 ~V8TestingScope(); 32 ~V8TestingScope();
33 33
34 private: 34 private:
35 v8::HandleScope m_handleScope; 35 v8::HandleScope m_handleScope;
36 v8::Context::Scope m_contextScope; 36 v8::Context::Scope m_contextScope;
37 RefPtr<ScriptState> m_scriptState; 37 RefPtr<ScriptState> m_scriptState;
38 }; 38 };
39 39
40 } // namespace blink 40 } // namespace blink
41 41
42 #endif // V8BindingForTesting_h 42 #endif // V8BindingForTesting_h
OLDNEW
« no previous file with comments | « Source/bindings/core/v8/V8Binding.h ('k') | Source/bindings/core/v8/V8CustomElementLifecycleCallbacks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698