Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_ | |
| 6 #define CHROME_BROWSER_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_ | |
| 7 | |
| 8 #include "chrome/browser/importer/importer.h" | |
| 9 | |
| 10 class ImporterBridge; | |
| 11 | |
| 12 namespace importer { | |
| 13 struct SourceProfile; | |
| 14 } | |
| 15 | |
| 16 // Importer for bookmarks files. | |
| 17 class BookmarksFileImporter : public Importer { | |
| 18 public: | |
| 19 BookmarksFileImporter(); | |
| 20 | |
| 21 virtual void StartImport(const importer::SourceProfile& source_profile, | |
| 22 uint16 items, | |
| 23 ImporterBridge* bridge) OVERRIDE; | |
| 24 | |
| 25 private: | |
| 26 virtual ~BookmarksFileImporter(); | |
|
gab
2013/05/10 20:37:57
Why is this private? I don't even think you need t
Avi (use Gerrit)
2013/05/10 21:34:53
This is an Importer which is ref counted, therefor
gab
2013/05/10 21:47:44
Ah I see, thanks for clarifying.
| |
| 27 | |
| 28 DISALLOW_COPY_AND_ASSIGN(BookmarksFileImporter); | |
| 29 }; | |
| 30 | |
| 31 #endif // CHROME_BROWSER_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_ | |
| OLD | NEW |