HomeSort by relevance Sort by last modified time
    Searched refs:importer (Results 1 - 25 of 115) sorted by null

1 2 3 4 5

  /external/chromium_org/chrome/common/importer/
importer_data_types.cc 5 #include "chrome/common/importer/importer_data_types.h"
7 namespace importer { namespace
17 } // namespace importer
ie_importer_utils_win.h 10 namespace importer { namespace
24 } // namespace importer
importer_type.h 10 namespace importer { namespace
21 // Value 1 was the (now deleted) Firefox 2 profile importer.
26 // Value 4 was the (now deleted) Google Toolbar importer.
30 } // namespace importer
importer_bridge.h 15 #include "chrome/common/importer/importer_data_types.h"
16 #include "chrome/common/importer/importer_url_row.h"
26 namespace importer { namespace
46 const importer::ImporterIE7PasswordInfo& password_info) = 0;
53 importer::VisitSource visit_source) = 0;
56 const std::vector<importer::URLKeywordInfo>& url_keywords,
71 virtual void NotifyItemStarted(importer::ImportItem item) = 0;
75 virtual void NotifyItemEnded(importer::ImportItem item) = 0;
83 // external import process, since the importer only needs a few strings.
  /external/chromium_org/chrome/utility/importer/
importer_creator.h 8 #include "chrome/common/importer/importer_type.h"
10 class Importer;
12 namespace importer { namespace
14 // Creates an Importer of the specified |type|.
15 Importer* CreateImporterByType(ImporterType type);
17 } // namespace importer
favicon_reencode.h 12 namespace importer { namespace
21 } // namespace importer
importer.h 13 namespace importer { namespace
18 class Importer : public base::RefCountedThreadSafe<Importer> {
22 // import, the importer should invoke ImporterHost::NotifyImportEnded() to
24 virtual void StartImport(const importer::SourceProfile& source_profile,
34 friend class base::RefCountedThreadSafe<Importer>;
36 Importer();
37 virtual ~Importer();
45 DISALLOW_COPY_AND_ASSIGN(Importer);
bookmarks_file_importer.h 10 #include "chrome/utility/importer/importer.h"
12 // Importer for bookmarks files.
13 class BookmarksFileImporter : public Importer {
17 virtual void StartImport(const importer::SourceProfile& source_profile,
external_process_importer_bridge.h 14 #include "chrome/common/importer/importer_bridge.h"
24 namespace importer { namespace
37 // When the importer is run in an external process, the bridge is effectively
39 // and notifications from the importer, and sends it across IPC. The
57 const importer::ImporterIE7PasswordInfo& password_info) OVERRIDE;
64 importer::VisitSource visit_source) OVERRIDE;
67 const std::vector<importer::URLKeywordInfo>& url_keywords,
77 virtual void NotifyItemStarted(importer::ImportItem item) OVERRIDE;
78 virtual void NotifyItemEnded(importer::ImportItem item) OVERRIDE;
90 // Holds strings needed by the external importer because the resourc
    [all...]
bookmarks_file_importer.cc 5 #include "chrome/utility/importer/bookmarks_file_importer.h"
8 #include "chrome/common/importer/imported_bookmark_entry.h"
9 #include "chrome/common/importer/imported_favicon_usage.h"
10 #include "chrome/common/importer/importer_bridge.h"
11 #include "chrome/common/importer/importer_data_types.h"
13 #include "chrome/utility/importer/bookmark_html_reader.h"
20 bool IsImporterCancelled(BookmarksFileImporter* importer) {
21 return importer->cancelled();
82 const importer::SourceProfile& source_profile,
85 // The only thing this importer can import is a bookmarks file, ak
    [all...]
importer_creator.cc 5 #include "chrome/utility/importer/importer_creator.h"
8 #include "chrome/utility/importer/bookmarks_file_importer.h"
9 #include "chrome/utility/importer/firefox_importer.h"
12 #include "chrome/utility/importer/ie_importer_win.h"
19 #include "chrome/utility/importer/safari_importer.h"
22 namespace importer { namespace
24 Importer* CreateImporterByType(ImporterType type) {
44 } // namespace importer
  /external/chromium_org/chrome/browser/importer/
importer_lock_dialog.h 11 namespace importer { namespace
19 } // namespace importer
importer_uma.h 10 #include "chrome/common/importer/importer_type.h"
12 namespace importer { namespace
14 // Logs to UMA that an Importer of the specified |type| was used. Uses
21 } // namespace importer
importer_list.cc 5 #include "chrome/browser/importer/importer_list.h"
9 #include "chrome/common/importer/firefox_importer_utils.h"
10 #include "chrome/common/importer/importer_bridge.h"
11 #include "chrome/common/importer/importer_data_types.h"
20 #include "chrome/common/importer/safari_importer_utils.h"
28 void DetectIEProfiles(std::vector<importer::SourceProfile*>* profiles) {
31 importer::SourceProfile* ie = new importer::SourceProfile;
33 ie->importer_type = importer::TYPE_IE;
36 ie->services_supported = importer::HISTORY | importer::FAVORITES
    [all...]
importer_list.h 17 namespace importer { namespace
47 const importer::SourceProfile& GetSourceProfileAt(size_t index) const;
54 const std::vector<importer::SourceProfile*>& profiles);
57 ScopedVector<importer::SourceProfile> source_profiles_;
importer_progress_observer.h 8 #include "chrome/common/importer/importer_data_types.h"
10 namespace importer { namespace
33 } // namespace importer
external_process_importer_host.h 13 #include "chrome/browser/importer/importer_progress_observer.h"
14 #include "chrome/browser/importer/profile_writer.h"
16 #include "chrome/common/importer/importer_data_types.h"
22 class Importer;
25 namespace importer { namespace
30 // importer bridge and the external process importer client.
39 // |source_profile| - importer profile to import.
41 // |items| - specifies which data to import (bitmask of importer::ImportItem).
44 const importer::SourceProfile& source_profile
    [all...]
in_process_importer_bridge.h 15 #include "chrome/browser/importer/profile_writer.h"
16 #include "chrome/common/importer/importer_bridge.h"
23 namespace importer { namespace
45 const importer::ImporterIE7PasswordInfo& password_info) OVERRIDE;
52 importer::VisitSource visit_source) OVERRIDE;
55 const std::vector<importer::URLKeywordInfo>& url_keywords,
65 virtual void NotifyItemStarted(importer::ImportItem item) OVERRIDE;
66 virtual void NotifyItemEnded(importer::ImportItem item) OVERRIDE;
external_process_importer_client.h 16 #include "chrome/common/importer/importer_data_types.h"
17 #include "chrome/common/importer/importer_url_row.h"
34 namespace importer { namespace
43 // importer host, who actually does the writing.
48 const importer::SourceProfile& source_profile,
81 const std::vector<importer::URLKeywordInfo>& url_keywords,
87 const importer::ImporterIE7PasswordInfo& importer_password_info);
101 void NotifyItemFinishedOnIOThread(importer::ImportItem import_item);
106 // These variables store data being collected from the importer until the
138 // Data to be passed from the importer host to the external importer
    [all...]
  /external/javassist/src/main/javassist/tools/rmi/
Sample.java 24 private ObjectImporter importer; field in class:Sample
28 return importer.call(objectId, identifier, args);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
__init__.py 115 importer = LazyImporter(_name.lower())
116 sys.modules['email.' + _name] = importer
117 setattr(sys.modules['email'], _name, importer)
122 importer = LazyImporter('mime.' + _name.lower())
123 sys.modules['email.MIME' + _name] = importer
124 setattr(sys.modules['email'], 'MIME' + _name, importer)
125 setattr(sys.modules['email.mime'], _name, importer)
113 importer = LazyImporter(_name.lower()) variable in class:LazyImporter
120 importer = LazyImporter('mime.' + _name.lower()) variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
__init__.py 115 importer = LazyImporter(_name.lower())
116 sys.modules['email.' + _name] = importer
117 setattr(sys.modules['email'], _name, importer)
122 importer = LazyImporter('mime.' + _name.lower())
123 sys.modules['email.MIME' + _name] = importer
124 setattr(sys.modules['email'], 'MIME' + _name, importer)
125 setattr(sys.modules['email.mime'], _name, importer)
113 importer = LazyImporter(_name.lower()) variable in class:LazyImporter
120 importer = LazyImporter('mime.' + _name.lower()) variable
  /external/chromium_org/chrome/browser/ui/webui/options/
import_data_handler.h 11 #include "chrome/browser/importer/importer_progress_observer.h"
13 #include "chrome/common/importer/importer_data_types.h"
23 public importer::ImporterProgressObserver,
39 void StartImport(const importer::SourceProfile& source_profile,
44 // importer::ImporterProgressObserver:
46 virtual void ImportItemStarted(importer::ImportItem item) OVERRIDE;
47 virtual void ImportItemEnded(importer::ImportItem item) OVERRIDE;
import_data_handler.cc 20 #include "chrome/browser/importer/external_process_importer_host.h"
21 #include "chrome/browser/importer/importer_list.h"
22 #include "chrome/browser/importer/importer_uma.h"
104 const importer::SourceProfile& source_profile,
127 importer::LogImporterUseToMetrics("ImportDataHandler",
143 uint16 selected_items = importer::NONE;
145 selected_items |= importer::HISTORY;
148 selected_items |= importer::FAVORITES;
151 selected_items |= importer::PASSWORDS;
154 selected_items |= importer::SEARCH_ENGINES
    [all...]
  /external/chromium_org/chrome/utility/
profile_import_handler.h 15 class Importer;
22 namespace importer { namespace
37 const importer::SourceProfile& source_profile,
46 // Thread that importer runs on, while ProfileImportThread handles messages
50 // Bridge object is passed to importer, so that it can send IPC calls
54 // A bitmask of importer::ImportItem.
57 // Importer of the appropriate type (Firefox, Safari, IE, etc.)
58 scoped_refptr<Importer> importer_;

Completed in 359 milliseconds

1 2 3 4 5