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: chrome/worker/nativewebworker_impl.h

Issue 387020: Upstreaming WebKit.gyp (Closed)
Patch Set: Created 11 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
« no previous file with comments | « chrome/test/render_view_test.cc ('k') | chrome/worker/nativewebworker_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 CHROME_WORKER_NATIVEWORKER_H_ 5 #ifndef CHROME_WORKER_NATIVEWORKER_H_
6 #define CHROME_WORKER_NATIVEWORKER_H_ 6 #define CHROME_WORKER_NATIVEWORKER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "webkit/api/public/WebWorker.h" 9 #include "third_party/WebKit/WebKit/chromium/public/WebWorker.h"
10 #include "webkit/api/public/WebWorkerClient.h" 10 #include "third_party/WebKit/WebKit/chromium/public/WebWorkerClient.h"
11 11
12 12
13 // Forward declaration for the listener thread pointer. 13 // Forward declaration for the listener thread pointer.
14 class NativeWebWorkerListenerThread; 14 class NativeWebWorkerListenerThread;
15 15
16 // This class is used by the worker process code to talk to the Native Client 16 // This class is used by the worker process code to talk to the Native Client
17 // worker implementation. 17 // worker implementation.
18 class NativeWebWorkerImpl : public WebKit::WebWorker { 18 class NativeWebWorkerImpl : public WebKit::WebWorker {
19 public: 19 public:
20 explicit NativeWebWorkerImpl(WebKit::WebWorkerClient* client); 20 explicit NativeWebWorkerImpl(WebKit::WebWorkerClient* client);
(...skipping 16 matching lines...) Expand all
37 WebKit::WebWorkerClient* client_; 37 WebKit::WebWorkerClient* client_;
38 struct NaClApp* nap_; 38 struct NaClApp* nap_;
39 struct NaClSrpcChannel* channel_; 39 struct NaClSrpcChannel* channel_;
40 NativeWebWorkerListenerThread* upcall_thread_; 40 NativeWebWorkerListenerThread* upcall_thread_;
41 struct NaClDesc* descs_[2]; 41 struct NaClDesc* descs_[2];
42 42
43 DISALLOW_COPY_AND_ASSIGN(NativeWebWorkerImpl); 43 DISALLOW_COPY_AND_ASSIGN(NativeWebWorkerImpl);
44 }; 44 };
45 45
46 #endif // CHROME_WORKER_NATIVEWEBWORKER_H_ 46 #endif // CHROME_WORKER_NATIVEWEBWORKER_H_
OLDNEW
« no previous file with comments | « chrome/test/render_view_test.cc ('k') | chrome/worker/nativewebworker_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698