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

Side by Side Diff: content/worker/worker_webkitplatformsupport_impl.cc

Issue 16294003: Update content/ to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 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/webrtc_audio_device_test.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 #include "content/worker/worker_webkitplatformsupport_impl.h" 5 #include "content/worker/worker_webkitplatformsupport_impl.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/platform_file.h" 8 #include "base/platform_file.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
10 #include "content/common/database_util.h" 10 #include "content/common/database_util.h"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 } 89 }
90 90
91 WebFileSystem* WorkerWebKitPlatformSupportImpl::fileSystem() { 91 WebFileSystem* WorkerWebKitPlatformSupportImpl::fileSystem() {
92 if (!web_file_system_) 92 if (!web_file_system_)
93 web_file_system_.reset(new WebFileSystemImpl()); 93 web_file_system_.reset(new WebFileSystemImpl());
94 return web_file_system_.get(); 94 return web_file_system_.get();
95 } 95 }
96 96
97 WebFileUtilities* WorkerWebKitPlatformSupportImpl::fileUtilities() { 97 WebFileUtilities* WorkerWebKitPlatformSupportImpl::fileUtilities() {
98 if (!file_utilities_) { 98 if (!file_utilities_) {
99 file_utilities_.reset(new FileUtilities(thread_safe_sender_)); 99 file_utilities_.reset(new FileUtilities(thread_safe_sender_.get()));
100 file_utilities_->set_sandbox_enabled(sandboxEnabled()); 100 file_utilities_->set_sandbox_enabled(sandboxEnabled());
101 } 101 }
102 return file_utilities_.get(); 102 return file_utilities_.get();
103 } 103 }
104 104
105 WebSandboxSupport* WorkerWebKitPlatformSupportImpl::sandboxSupport() { 105 WebSandboxSupport* WorkerWebKitPlatformSupportImpl::sandboxSupport() {
106 NOTREACHED(); 106 NOTREACHED();
107 return NULL; 107 return NULL;
108 } 108 }
109 109
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 WebString WorkerWebKitPlatformSupportImpl::preferredExtensionForMIMEType( 275 WebString WorkerWebKitPlatformSupportImpl::preferredExtensionForMIMEType(
276 const WebString& mime_type) { 276 const WebString& mime_type) {
277 base::FilePath::StringType file_extension; 277 base::FilePath::StringType file_extension;
278 thread_safe_sender_->Send( 278 thread_safe_sender_->Send(
279 new MimeRegistryMsg_GetPreferredExtensionForMimeType( 279 new MimeRegistryMsg_GetPreferredExtensionForMimeType(
280 UTF16ToASCII(mime_type), &file_extension)); 280 UTF16ToASCII(mime_type), &file_extension));
281 return webkit_base::FilePathStringToWebString(file_extension); 281 return webkit_base::FilePathStringToWebString(file_extension);
282 } 282 }
283 283
284 WebBlobRegistry* WorkerWebKitPlatformSupportImpl::blobRegistry() { 284 WebBlobRegistry* WorkerWebKitPlatformSupportImpl::blobRegistry() {
285 if (!blob_registry_.get() && thread_safe_sender_) 285 if (!blob_registry_.get() && thread_safe_sender_.get())
286 blob_registry_.reset(new WebBlobRegistryImpl(thread_safe_sender_)); 286 blob_registry_.reset(new WebBlobRegistryImpl(thread_safe_sender_.get()));
287 return blob_registry_.get(); 287 return blob_registry_.get();
288 } 288 }
289 289
290 } // namespace content 290 } // namespace content
OLDNEW
« no previous file with comments | « content/test/webrtc_audio_device_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698