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

Side by Side Diff: public/web/WebScriptCallback.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
« Source/web/WebLocalFrameImpl.h ('K') | « public/web/WebLocalFrame.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 WebScriptCallback_h
6 #define WebScriptCallback_h
7
8 namespace v8 {
9 class Value;
10 template <class T> class Local;
11 }
12
13 namespace blink {
14
15 template <typename T> class WebVector;
16
17 class WebScriptCallback {
vsevik 2014/10/20 16:50:37 WebScriptExecutionCallback
kozyatinskiy1 2014/10/21 12:46:47 Done.
18 public:
19 virtual ~WebScriptCallback() { }
20
21 // After function call all objects in vector will be collected
vsevik 2014/10/20 16:50:37 // Method to be invoked when the asynchronous scri
kozyatinskiy1 2014/10/21 12:46:47 Done.
22 virtual void finished(const WebVector<v8::Local<v8::Value> >&) { }
vsevik 2014/10/20 16:50:37 scriptExecutionComplete
kozyatinskiy1 2014/10/21 12:46:47 Renamed to completed
23 };
24
25 } // namespace blink
26
27 #endif // WebScriptCallback_h
OLDNEW
« Source/web/WebLocalFrameImpl.h ('K') | « public/web/WebLocalFrame.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698