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

Unified Diff: content/worker/websharedworker_stub.h

Issue 102593002: Convert string16 to base::string16 in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/test/weburl_loader_mock_factory.cc ('k') | content/worker/websharedworker_stub.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/worker/websharedworker_stub.h
diff --git a/content/worker/websharedworker_stub.h b/content/worker/websharedworker_stub.h
index ee5f509adec099b971861686c9d2686ef2e1d422..66d11ea7b18a2d0e04aaff0c733ad35160ca3c9c 100644
--- a/content/worker/websharedworker_stub.h
+++ b/content/worker/websharedworker_stub.h
@@ -25,7 +25,7 @@ class SharedWorkerDevToolsAgent;
// appropriate WebSharedWorker APIs.
class WebSharedWorkerStub : public IPC::Listener {
public:
- WebSharedWorkerStub(const string16& name, int route_id,
+ WebSharedWorkerStub(const base::string16& name, int route_id,
const WorkerAppCacheInitInfo& appcache_init_info);
// IPC::Listener implementation.
@@ -54,8 +54,9 @@ class WebSharedWorkerStub : public IPC::Listener {
void OnConnect(int sent_message_port_id, int routing_id);
void OnStartWorkerContext(
- const GURL& url, const string16& user_agent, const string16& source_code,
- const string16& content_security_policy,
+ const GURL& url, const base::string16& user_agent,
+ const base::string16& source_code,
+ const base::string16& content_security_policy,
blink::WebContentSecurityPolicyType policy_type);
void OnTerminateWorkerContext();
@@ -70,7 +71,7 @@ class WebSharedWorkerStub : public IPC::Listener {
WebSharedWorkerClientProxy client_;
blink::WebSharedWorker* impl_;
- string16 name_;
+ base::string16 name_;
bool started_;
GURL url_;
scoped_ptr<SharedWorkerDevToolsAgent> worker_devtools_agent_;
« no previous file with comments | « content/test/weburl_loader_mock_factory.cc ('k') | content/worker/websharedworker_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698