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

Side by Side Diff: chrome/utility/importer/bookmarks_file_importer.h

Issue 18501013: Move most importer code to chrome/utility/importer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: another gyp attempt Created 7 years, 5 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 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 #ifndef CHROME_BROWSER_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_ 5 #ifndef CHROME_UTILITY_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_
6 #define CHROME_BROWSER_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_ 6 #define CHROME_UTILITY_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "chrome/browser/importer/importer.h" 10 #include "chrome/utility/importer/importer.h"
11 11
12 // Importer for bookmarks files. 12 // Importer for bookmarks files.
13 class BookmarksFileImporter : public Importer { 13 class BookmarksFileImporter : public Importer {
14 public: 14 public:
15 BookmarksFileImporter(); 15 BookmarksFileImporter();
16 16
17 virtual void StartImport(const importer::SourceProfile& source_profile, 17 virtual void StartImport(const importer::SourceProfile& source_profile,
18 uint16 items, 18 uint16 items,
19 ImporterBridge* bridge) OVERRIDE; 19 ImporterBridge* bridge) OVERRIDE;
20 20
21 private: 21 private:
22 virtual ~BookmarksFileImporter(); 22 virtual ~BookmarksFileImporter();
23 23
24 DISALLOW_COPY_AND_ASSIGN(BookmarksFileImporter); 24 DISALLOW_COPY_AND_ASSIGN(BookmarksFileImporter);
25 }; 25 };
26 26
27 #endif // CHROME_BROWSER_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_ 27 #endif // CHROME_UTILITY_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_
OLDNEW
« no previous file with comments | « chrome/utility/importer/bookmark_html_reader_unittest.cc ('k') | chrome/utility/importer/bookmarks_file_importer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698