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

Unified Diff: chrome/browser/importer/importer.h

Issue 27242: Make importer.cc compile on Posix. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/browser.scons ('k') | chrome/browser/importer/importer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/importer/importer.h
===================================================================
--- chrome/browser/importer/importer.h (revision 10504)
+++ chrome/browser/importer/importer.h (working copy)
@@ -27,7 +27,9 @@
// An enumeration of the type of browsers that we support to import
// settings and data from them.
enum ProfileType {
- MS_IE = 0,
+#if defined(OS_WIN)
+ MS_IE,
+#endif
FIREFOX2,
FIREFOX3,
// Identifies a 'bookmarks.html' file.
@@ -276,7 +278,9 @@
void DetectSourceProfiles();
// Helper methods for detecting available profiles.
+#if defined(OS_WIN)
void DetectIEProfiles();
+#endif
void DetectFirefoxProfiles();
// The list of profiles with the default one first.
« no previous file with comments | « chrome/browser/browser.scons ('k') | chrome/browser/importer/importer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698