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

Side by Side Diff: public/web/WebEmbeddedWorker.h

Issue 61763004: Add EmbeddedWorker interfaces in Blink API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 10 matching lines...) Expand all
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef WebScrollbarTheme_h 31 #ifndef WebEmbeddedWorker_h
32 #define WebScrollbarTheme_h 32 #define WebEmbeddedWorker_h
33 33
34 #include "WebContentSecurityPolicy.h"
35 #include "WebEmbeddedWorkerStartMode.h"
34 #include "public/platform/WebCommon.h" 36 #include "public/platform/WebCommon.h"
35 37
36 namespace WebKit { 38 namespace WebKit {
abarth-chromium 2013/11/07 17:51:13 WebKit -> blink
kinuko 2013/11/08 12:17:23 Done.
37 39
38 class WebScrollbarTheme { 40 class WebEmbeddedWorkerClient;
41 class WebString;
42 class WebURL;
43
44 // An interface to start and terminate an embedded worker.
45 // All methods of this class must be called on the main thread.
46 class WebEmbeddedWorker {
abarth-chromium 2013/11/07 17:51:13 Is an EmbeddedWorker a SharedWorker or can it be a
kinuko 2013/11/08 12:17:23 It's primarily for ServiceWorker. I'm thinking abo
39 public: 47 public:
40 // Updates the scrollbar appearance and behavior. 48 // Invoked on the main thread to instantiate a WebEmbeddedWorker.
41 // |initialButtonDelay| is the current value of NSScrollerButtonDelay from N SUserDefaults. 49 // The given WebEmbeddedWorkerClient is going to be passed on to the
42 // |autoscrollButtonDelay| is the current value of NSScrollerButtonPeriod fr om NSUserDefaults. 50 // worker thread and is held by a newly created WorkerGlobalScope.
43 // |jumpOnTrackClick| is the current value of AppleScrollerPagingBehavior fr om NSUserDefaults. 51 BLINK_EXPORT static WebEmbeddedWorker* create(WebEmbeddedWorkerClient*);
44 // |redraw| is true if the update requires a redraw to include the change. 52
45 BLINK_EXPORT static void updateScrollbars( 53 virtual ~WebEmbeddedWorker() { }
46 float initialButtonDelay, float autoscrollButtonDelay, 54
47 bool jumpOnTrackClick, bool redraw); 55 virtual void startWorkerGlobalScope(
56 const WebURL& scriptURL,
57 const WebString& scriptSource,
58 const WebString& userAgent,
59 const WebString& contentSecurityPolicy,
60 WebContentSecurityPolicyType,
61 WebEmbeddedWorkerStartMode) { }
abarth-chromium 2013/11/07 17:51:13 Should these be pure virtual? Rather than adding
kinuko 2013/11/08 12:17:23 Done.
62
63 virtual void terminateWorkerGlobalScope() { }
48 }; 64 };
49 65
50 } // namespace WebKit 66 } // namespace WebKit
51 67
52 #endif 68 #endif // WebEmbeddedWorker_h
OLDNEW
« no previous file with comments | « no previous file | public/web/WebEmbeddedWorkerClient.h » ('j') | public/web/WebEmbeddedWorkerClient.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698