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

Side by Side Diff: Source/web/ScriptExecutionCallbackImpl.h

Issue 660863002: [DevTools] Added public method for async execution of scripts (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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef ScriptExecutionCallbackImpl_h
6 #define ScriptExecutionCallbackImpl_h
7
8 #include "core/dom/ScriptExecutionCallback.h"
9
10 namespace v8 {
11 class Value;
12 template <class T> class Local;
13 }
14
15 namespace blink {
16
17 class WebScriptExecutionCallback;
18 template <typename T> class WebVector;
19
20 class ScriptExecutionCallbackImpl : public ScriptExecutionCallback {
21 public:
22 ScriptExecutionCallbackImpl(WebScriptExecutionCallback*);
23 virtual ~ScriptExecutionCallbackImpl();
24
25 virtual void completed(const WebVector<v8::Local<v8::Value> >&) override;
26
27 private:
28 WebScriptExecutionCallback* m_callback;
29 };
30
31 } // namespace blink
32
33 #endif // ScriptExecutionCallbackImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698