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

Side by Side Diff: chrome/worker/chrome_content_worker_client.h

Issue 6990059: DevTools: devtools message plumbing between worker and page processes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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
(Empty)
1 // Copyright (c) 2011 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 CHROME_WORKER_CHROME_CONTENT_WORKER_CLIENT_H_
6 #define CHROME_WORKER_CHROME_CONTENT_WORKER_CLIENT_H_
7 #pragma once
8
9 #include "content/worker/content_worker_client.h"
10
11 namespace WebKit {
12 class WebWorkerClient;
jam 2011/05/24 20:21:31 nit: not needed
13 }
14
15 namespace chrome {
16
17 class ChromeContentWorkerClient : public content::ContentWorkerClient {
18 public:
19 ChromeContentWorkerClient();
20 virtual ~ChromeContentWorkerClient();
21
22 virtual void WebWorkerStubCreated(WebWorkerStub*, WebKit::WebWorker*,
23 int route_id);
24 virtual void WebWorkerProxyCreated(WebWorkerBase*, int route_id,
25 WebKit::WebWorkerClient*);
26 };
27
28 } // namespace chrome
29
30 #endif // CHROME_WORKER_CHROME_CONTENT_WORKER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698