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

Side by Side Diff: content/worker/websharedworker_stub.h

Issue 18868005: content: Migrate from googleurl/ includes to url/ ones. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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
« no previous file with comments | « content/test/net/url_request_slow_download_job.cc ('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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_WORKER_WEBSHAREDWORKER_STUB_H_ 5 #ifndef CONTENT_WORKER_WEBSHAREDWORKER_STUB_H_
6 #define CONTENT_WORKER_WEBSHAREDWORKER_STUB_H_ 6 #define CONTENT_WORKER_WEBSHAREDWORKER_STUB_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "content/worker/websharedworkerclient_proxy.h" 9 #include "content/worker/websharedworkerclient_proxy.h"
10 #include "content/worker/worker_webapplicationcachehost_impl.h" 10 #include "content/worker/worker_webapplicationcachehost_impl.h"
11 #include "googleurl/src/gurl.h"
12 #include "ipc/ipc_listener.h" 11 #include "ipc/ipc_listener.h"
13 #include "third_party/WebKit/public/web/WebSharedWorker.h" 12 #include "third_party/WebKit/public/web/WebSharedWorker.h"
13 #include "url/gurl.h"
14 14
15 namespace WebKit { 15 namespace WebKit {
16 class WebSharedWorker; 16 class WebSharedWorker;
17 } 17 }
18 18
19 namespace content { 19 namespace content {
20 20
21 class SharedWorkerDevToolsAgent; 21 class SharedWorkerDevToolsAgent;
22 22
23 // This class creates a WebSharedWorker, and translates incoming IPCs to the 23 // This class creates a WebSharedWorker, and translates incoming IPCs to the
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 typedef std::pair<int, int> PendingConnectInfo; 75 typedef std::pair<int, int> PendingConnectInfo;
76 typedef std::vector<PendingConnectInfo> PendingConnectInfoList; 76 typedef std::vector<PendingConnectInfo> PendingConnectInfoList;
77 PendingConnectInfoList pending_connects_; 77 PendingConnectInfoList pending_connects_;
78 78
79 DISALLOW_COPY_AND_ASSIGN(WebSharedWorkerStub); 79 DISALLOW_COPY_AND_ASSIGN(WebSharedWorkerStub);
80 }; 80 };
81 81
82 } // namespace content 82 } // namespace content
83 83
84 #endif // CONTENT_WORKER_WEBSHAREDWORKER_STUB_H_ 84 #endif // CONTENT_WORKER_WEBSHAREDWORKER_STUB_H_
OLDNEW
« no previous file with comments | « content/test/net/url_request_slow_download_job.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698