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

Side by Side Diff: chrome/browser/importer/in_process_importer_bridge.h

Issue 6979007: Many fixes to bookmark importing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Happy tests =) Created 9 years, 7 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_IMPORTER_IN_PROCESS_IMPORTER_BRIDGE_H_ 5 #ifndef CHROME_BROWSER_IMPORTER_IN_PROCESS_IMPORTER_BRIDGE_H_
6 #define CHROME_BROWSER_IMPORTER_IN_PROCESS_IMPORTER_BRIDGE_H_ 6 #define CHROME_BROWSER_IMPORTER_IN_PROCESS_IMPORTER_BRIDGE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "build/build_config.h" 14 #include "build/build_config.h"
15 #include "chrome/browser/importer/importer_bridge.h" 15 #include "chrome/browser/importer/importer_bridge.h"
16 #include "chrome/browser/importer/profile_writer.h" 16 #include "chrome/browser/importer/profile_writer.h"
17 17
18 class GURL; 18 class GURL;
19 class ImporterHost; 19 class ImporterHost;
20 20
21 class InProcessImporterBridge : public ImporterBridge { 21 class InProcessImporterBridge : public ImporterBridge {
22 public: 22 public:
23 InProcessImporterBridge(ProfileWriter* writer, ImporterHost* host); 23 InProcessImporterBridge(ProfileWriter* writer, ImporterHost* host);
24 24
25 // Begin ImporterBridge implementation: 25 // Begin ImporterBridge implementation:
26 virtual void AddBookmarks( 26 virtual void AddBookmarks(
27 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks, 27 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks,
28 const string16& first_folder_name, 28 const string16& first_folder_name) OVERRIDE;
29 int options) OVERRIDE;
30 29
31 virtual void AddHomePage(const GURL &home_page) OVERRIDE; 30 virtual void AddHomePage(const GURL &home_page) OVERRIDE;
32 31
33 #if defined(OS_WIN) 32 #if defined(OS_WIN)
34 virtual void AddIE7PasswordInfo( 33 virtual void AddIE7PasswordInfo(
35 const IE7PasswordInfo& password_info) OVERRIDE; 34 const IE7PasswordInfo& password_info) OVERRIDE;
36 #endif 35 #endif
37 36
38 virtual void SetFavicons( 37 virtual void SetFavicons(
39 const std::vector<history::ImportedFaviconUsage>& favicons) OVERRIDE; 38 const std::vector<history::ImportedFaviconUsage>& favicons) OVERRIDE;
(...skipping 18 matching lines...) Expand all
58 private: 57 private:
59 virtual ~InProcessImporterBridge(); 58 virtual ~InProcessImporterBridge();
60 59
61 ProfileWriter* const writer_; // weak 60 ProfileWriter* const writer_; // weak
62 ImporterHost* const host_; // weak 61 ImporterHost* const host_; // weak
63 62
64 DISALLOW_COPY_AND_ASSIGN(InProcessImporterBridge); 63 DISALLOW_COPY_AND_ASSIGN(InProcessImporterBridge);
65 }; 64 };
66 65
67 #endif // CHROME_BROWSER_IMPORTER_IN_PROCESS_IMPORTER_BRIDGE_H_ 66 #endif // CHROME_BROWSER_IMPORTER_IN_PROCESS_IMPORTER_BRIDGE_H_
OLDNEW
« no previous file with comments | « chrome/browser/importer/importer_unittest.cc ('k') | chrome/browser/importer/in_process_importer_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698