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/common/importer/importer_data_types.cc

Issue 2470283002: Convert profile import IPCs to Mojo (Closed)
Patch Set: Merge Created 4 years 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "chrome/common/importer/importer_data_types.h" 6 #include "chrome/common/importer/importer_data_types.h"
7 7
8 namespace importer { 8 namespace importer {
9 9
10 SourceProfile::SourceProfile() 10 SourceProfile::SourceProfile()
11 : importer_type(TYPE_UNKNOWN), 11 : importer_type(TYPE_UNKNOWN),
12 services_supported(0) { 12 services_supported(0) {
13 } 13 }
14 14
15 SourceProfile::SourceProfile(const SourceProfile& other) = default; 15 SourceProfile::SourceProfile(const SourceProfile& other) = default;
16 16
17 SourceProfile::~SourceProfile() { 17 SourceProfile::~SourceProfile() {
18 } 18 }
19 19
20 #if defined(OS_WIN)
21 ImporterIE7PasswordInfo::ImporterIE7PasswordInfo() { 20 ImporterIE7PasswordInfo::ImporterIE7PasswordInfo() {
22 } 21 }
23 22
23 ImporterIE7PasswordInfo::ImporterIE7PasswordInfo(
24 const ImporterIE7PasswordInfo& other) = default;
25
24 ImporterIE7PasswordInfo::~ImporterIE7PasswordInfo() { 26 ImporterIE7PasswordInfo::~ImporterIE7PasswordInfo() {
25 } 27 }
26 #endif 28
29 ImporterIE7PasswordInfo& ImporterIE7PasswordInfo::operator=(
30 const ImporterIE7PasswordInfo& other) = default;
27 31
28 } // namespace importer 32 } // namespace importer
OLDNEW
« no previous file with comments | « chrome/common/importer/importer_data_types.h ('k') | chrome/common/importer/profile_import.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698