diff options
author | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-13 13:42:30 +0000 |
---|---|---|
committer | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-13 13:42:30 +0000 |
commit | 47f236d396ead60f96491515befa1b9e52f5aaa6 (patch) | |
tree | 55910c9a7bd90b44fe8e91008bcafa8c253c7f83 /content/worker | |
parent | 3eb0ecc703f85a3748db3b85bae79c5ee474440f (diff) | |
download | chromium_src-47f236d396ead60f96491515befa1b9e52f5aaa6.zip chromium_src-47f236d396ead60f96491515befa1b9e52f5aaa6.tar.gz chromium_src-47f236d396ead60f96491515befa1b9e52f5aaa6.tar.bz2 |
Rewrite scoped_ptr<T>(NULL) to use the default ctor in content/.
This is the result of running the rewrite_scoped_ptr_ctor_null tool
across all files built on Linux in the content/ directory.
BUG=173286
Review URL: https://chromiumcodereview.appspot.com/16703020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206062 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/worker')
-rw-r--r-- | content/worker/websharedworker_stub.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/worker/websharedworker_stub.cc b/content/worker/websharedworker_stub.cc index 5ee9c2f..03f5ef6 100644 --- a/content/worker/websharedworker_stub.cc +++ b/content/worker/websharedworker_stub.cc @@ -19,14 +19,14 @@ namespace content { WebSharedWorkerStub::WebSharedWorkerStub( - const string16& name, int route_id, + const string16& name, + int route_id, const WorkerAppCacheInitInfo& appcache_init_info) : route_id_(route_id), appcache_init_info_(appcache_init_info), client_(route_id, this), name_(name), - started_(false), - worker_devtools_agent_(NULL) { + started_(false) { WorkerThread* worker_thread = WorkerThread::current(); DCHECK(worker_thread); |