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

Side by Side Diff: chrome/browser/importer/external_process_importer_bridge.cc

Issue 16561007: Use a direct include of utf_string_conversions.h in chrome/browser/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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/browser/iframe_browsertest.cc ('k') | chrome/browser/importer/firefox3_importer.cc » ('j') | 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/browser/importer/external_process_importer_bridge.h" 5 #include "chrome/browser/importer/external_process_importer_bridge.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/strings/string_number_conversions.h" 9 #include "base/strings/string_number_conversions.h"
10 #include "base/strings/utf_string_conversions.h"
10 #include "base/task_runner.h" 11 #include "base/task_runner.h"
11 #include "base/utf_string_conversions.h"
12 #include "base/values.h" 12 #include "base/values.h"
13 #include "chrome/browser/bookmarks/imported_bookmark_entry.h" 13 #include "chrome/browser/bookmarks/imported_bookmark_entry.h"
14 #include "chrome/browser/favicon/imported_favicon_usage.h" 14 #include "chrome/browser/favicon/imported_favicon_usage.h"
15 #include "chrome/browser/importer/profile_import_process_messages.h" 15 #include "chrome/browser/importer/profile_import_process_messages.h"
16 #include "content/public/common/password_form.h" 16 #include "content/public/common/password_form.h"
17 #include "ipc/ipc_sender.h" 17 #include "ipc/ipc_sender.h"
18 18
19 #if defined(OS_WIN) 19 #if defined(OS_WIN)
20 #include "components/webdata/encryptor/ie7_password.h" 20 #include "components/webdata/encryptor/ie7_password.h"
21 #endif 21 #endif
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 task_runner_->PostTask( 167 task_runner_->PostTask(
168 FROM_HERE, 168 FROM_HERE,
169 base::Bind(&ExternalProcessImporterBridge::SendInternal, 169 base::Bind(&ExternalProcessImporterBridge::SendInternal,
170 this, message)); 170 this, message));
171 } 171 }
172 172
173 void ExternalProcessImporterBridge::SendInternal(IPC::Message* message) { 173 void ExternalProcessImporterBridge::SendInternal(IPC::Message* message) {
174 DCHECK(task_runner_->RunsTasksOnCurrentThread()); 174 DCHECK(task_runner_->RunsTasksOnCurrentThread());
175 sender_->Send(message); 175 sender_->Send(message);
176 } 176 }
OLDNEW
« no previous file with comments | « chrome/browser/iframe_browsertest.cc ('k') | chrome/browser/importer/firefox3_importer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698