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

Side by Side Diff: chrome/browser/importer/in_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
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/in_process_importer_bridge.h" 5 #include "chrome/browser/importer/in_process_importer_bridge.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/utf_string_conversions.h" 8 #include "base/strings/utf_string_conversions.h"
9 #include "chrome/browser/bookmarks/imported_bookmark_entry.h" 9 #include "chrome/browser/bookmarks/imported_bookmark_entry.h"
10 #include "chrome/browser/favicon/imported_favicon_usage.h" 10 #include "chrome/browser/favicon/imported_favicon_usage.h"
11 #include "chrome/browser/importer/importer_host.h" 11 #include "chrome/browser/importer/importer_host.h"
12 #include "chrome/browser/search_engines/template_url.h" 12 #include "chrome/browser/search_engines/template_url.h"
13 #include "content/public/browser/browser_thread.h" 13 #include "content/public/browser/browser_thread.h"
14 #include "content/public/common/password_form.h" 14 #include "content/public/common/password_form.h"
15 #include "ui/base/l10n/l10n_util.h" 15 #include "ui/base/l10n/l10n_util.h"
16 16
17 #if defined(OS_WIN) 17 #if defined(OS_WIN)
18 #include "components/webdata/encryptor/ie7_password.h" 18 #include "components/webdata/encryptor/ie7_password.h"
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 BrowserThread::PostTask( 107 BrowserThread::PostTask(
108 BrowserThread::UI, FROM_HERE, 108 BrowserThread::UI, FROM_HERE,
109 base::Bind(&ImporterHost::NotifyImportEnded, host_)); 109 base::Bind(&ImporterHost::NotifyImportEnded, host_));
110 } 110 }
111 111
112 string16 InProcessImporterBridge::GetLocalizedString(int message_id) { 112 string16 InProcessImporterBridge::GetLocalizedString(int message_id) {
113 return l10n_util::GetStringUTF16(message_id); 113 return l10n_util::GetStringUTF16(message_id);
114 } 114 }
115 115
116 InProcessImporterBridge::~InProcessImporterBridge() {} 116 InProcessImporterBridge::~InProcessImporterBridge() {}
OLDNEW
« no previous file with comments | « chrome/browser/importer/importer_unittest_utils.cc ('k') | chrome/browser/importer/nss_decryptor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698