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

Side by Side Diff: chrome/utility/profile_import_handler.cc

Issue 15836003: Update chrome/ 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 | « chrome/test/webdriver/webdriver_automation.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 "chrome/utility/profile_import_handler.h" 5 #include "chrome/utility/profile_import_handler.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/message_loop/message_loop_proxy.h" 9 #include "base/message_loop/message_loop_proxy.h"
10 #include "base/threading/thread.h" 10 #include "base/threading/thread.h"
(...skipping 21 matching lines...) Expand all
32 } 32 }
33 33
34 void ProfileImportHandler::OnImportStart( 34 void ProfileImportHandler::OnImportStart(
35 const importer::SourceProfile& source_profile, 35 const importer::SourceProfile& source_profile,
36 uint16 items, 36 uint16 items,
37 const base::DictionaryValue& localized_strings) { 37 const base::DictionaryValue& localized_strings) {
38 bridge_ = new ExternalProcessImporterBridge( 38 bridge_ = new ExternalProcessImporterBridge(
39 localized_strings, content::UtilityThread::Get(), 39 localized_strings, content::UtilityThread::Get(),
40 base::MessageLoopProxy::current()); 40 base::MessageLoopProxy::current());
41 importer_ = importer::CreateImporterByType(source_profile.importer_type); 41 importer_ = importer::CreateImporterByType(source_profile.importer_type);
42 if (!importer_) { 42 if (!importer_.get()) {
43 Send(new ProfileImportProcessHostMsg_Import_Finished(false, 43 Send(new ProfileImportProcessHostMsg_Import_Finished(
44 "Importer could not be created.")); 44 false, "Importer could not be created."));
45 return; 45 return;
46 } 46 }
47 47
48 items_to_import_ = items; 48 items_to_import_ = items;
49 49
50 // Create worker thread in which importer runs. 50 // Create worker thread in which importer runs.
51 import_thread_.reset(new base::Thread("import_thread")); 51 import_thread_.reset(new base::Thread("import_thread"));
52 #if defined(OS_WIN) 52 #if defined(OS_WIN)
53 import_thread_->init_com_with_mta(false); 53 import_thread_->init_com_with_mta(false);
54 #endif 54 #endif
(...skipping 26 matching lines...) Expand all
81 import_thread_.reset(); 81 import_thread_.reset();
82 content::UtilityThread::Get()->ReleaseProcessIfNeeded(); 82 content::UtilityThread::Get()->ReleaseProcessIfNeeded();
83 } 83 }
84 84
85 // static 85 // static
86 bool ProfileImportHandler::Send(IPC::Message* message) { 86 bool ProfileImportHandler::Send(IPC::Message* message) {
87 return content::UtilityThread::Get()->Send(message); 87 return content::UtilityThread::Get()->Send(message);
88 } 88 }
89 89
90 } // namespace chrome 90 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/test/webdriver/webdriver_automation.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698