Index: chrome/browser/importer/importer.h |
diff --git a/chrome/browser/importer/importer.h b/chrome/browser/importer/importer.h |
index 9b8610924572d1dbef4fcdd09fca038a26f39a19..b4a5b6e2d32a476e00ef1a401374a5d553ba1982 100644 |
--- a/chrome/browser/importer/importer.h |
+++ b/chrome/browser/importer/importer.h |
@@ -31,15 +31,6 @@ class Importer : public base::RefCountedThreadSafe<Importer> { |
// Cancels the import process. |
virtual void Cancel(); |
- void set_import_to_bookmark_bar(bool import_to_bookmark_bar) { |
- import_to_bookmark_bar_ = import_to_bookmark_bar; |
- } |
- |
- void set_bookmark_bar_disabled(bool bookmark_bar_disabled) { |
- bookmark_bar_disabled_ = bookmark_bar_disabled; |
- } |
- |
- bool bookmark_bar_disabled() { return bookmark_bar_disabled_; } |
bool cancelled() const { return cancelled_; } |
protected: |
@@ -55,19 +46,9 @@ class Importer : public base::RefCountedThreadSafe<Importer> { |
size_t src_len, |
std::vector<unsigned char>* png_data); |
- bool import_to_bookmark_bar() const { return import_to_bookmark_bar_; } |
- |
scoped_refptr<ImporterBridge> bridge_; |
private: |
- // True if the importer is created in the first run UI. |
- bool import_to_bookmark_bar_; |
- |
- // Whether bookmark bar is disabled (not shown) for importer. This is set |
- // true during first run to prevent out of process bookmark importer from |
- // updating bookmark bar settings. |
- bool bookmark_bar_disabled_; |
- |
// True if the caller cancels the import process. |
bool cancelled_; |