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

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

Issue 18064002: The browser importer code which runs in the utility process should not depend on chrome\browser dat… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 6 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/importer/importer_bridge.h ('k') | chrome/browser/importer/in_process_importer_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/importer/importer_data_types.h
===================================================================
--- chrome/browser/importer/importer_data_types.h (revision 208948)
+++ chrome/browser/importer/importer_data_types.h (working copy)
@@ -12,6 +12,7 @@
#include "base/memory/ref_counted.h"
#include "base/strings/string16.h"
#include "chrome/browser/importer/importer_type.h"
+#include "googleurl/src/gurl.h"
#include "net/url_request/url_request_context_getter.h"
// Types needed for importing data from other browsers and the Google Toolbar.
@@ -47,6 +48,13 @@
scoped_refptr<net::URLRequestContextGetter> request_context_getter;
};
+// Contains information needed for importing bookmarks/search engine urls, etc.
+struct URLKeywordInfo {
+ GURL url;
+ string16 keyword;
+ string16 display_name;
+};
+
} // namespace importer
#endif // CHROME_BROWSER_IMPORTER_IMPORTER_DATA_TYPES_H_
« no previous file with comments | « chrome/browser/importer/importer_bridge.h ('k') | chrome/browser/importer/in_process_importer_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698