HomeSort by relevance Sort by last modified time
    Searched defs:importer (Results 26 - 50 of 63) sorted by null

12 3

  /external/chromium/chrome/browser/importer/
importer.h 16 namespace importer { namespace
21 class Importer : public base::RefCountedThreadSafe<Importer> {
25 // import, the importer should invoke ImporterHost::NotifyImportEnded() to
27 virtual void StartImport(const importer::SourceProfile& source_profile,
46 friend class base::RefCountedThreadSafe<Importer>;
48 Importer();
49 virtual ~Importer();
63 // True if the importer is created in the first run UI.
66 // Whether bookmark bar is disabled (not shown) for importer. This is se
    [all...]
importer_list.h 17 namespace importer { namespace
56 const importer::SourceProfile& GetSourceProfileAt(size_t index) const;
59 const importer::SourceProfile& GetSourceProfileForImporterType(
75 const std::vector<importer::SourceProfile*>& profiles);
78 ScopedVector<importer::SourceProfile> source_profiles_;
importer_data_types.h 14 #include "chrome/browser/importer/importer_type.h"
17 namespace importer { namespace
31 // Information about a profile needed by an importer to do import work.
43 } // namespace importer
importer_host.h 14 #include "chrome/browser/importer/importer_data_types.h"
15 #include "chrome/browser/importer/profile_writer.h"
21 class Importer;
25 namespace importer { namespace
47 void SetObserver(importer::ImporterProgressObserver* observer);
53 void NotifyImportItemStarted(importer::ImportItem item);
54 void NotifyImportItemEnded(importer::ImportItem item);
57 // When in headless mode, the importer will not show the warning dialog and
68 // |source_profile| - importer profile to import.
70 // |items| - specifies which data to import (bitmask of importer::ImportItem)
    [all...]
firefox_importer_unittest.cc 12 #include "chrome/browser/importer/firefox2_importer.h"
13 #include "chrome/browser/importer/firefox_importer_unittest_utils.h"
14 #include "chrome/browser/importer/firefox_importer_utils.h"
15 #include "chrome/browser/importer/nss_decryptor.h"
196 Firefox2Importer* importer = new Firefox2Importer(); local
197 importer->AddRef();
199 importer->ImportBookmarksFile(empty_folder_path, default_urls, false,
200 first_folder_name, importer, &bookmarks,
247 importer->ImportBookmarksFile(empty_folder_path, default_urls, false,
248 first_folder_name, importer, &bookmarks
    [all...]
  /external/chromium/chrome/browser/ui/gtk/importer/
import_lock_dialog_gtk.cc 5 #include "chrome/browser/ui/gtk/importer/import_lock_dialog_gtk.h"
10 #include "chrome/browser/importer/importer_host.h"
11 #include "chrome/browser/importer/importer_lock_dialog.h"
18 namespace importer { namespace
26 } // namespace importer
import_progress_dialog_gtk.cc 5 #include "chrome/browser/ui/gtk/importer/import_progress_dialog_gtk.h"
12 #include "chrome/browser/importer/importer_host.h"
13 #include "chrome/browser/importer/importer_observer.h"
40 const importer::SourceProfile& source_profile,
49 source_profile.importer_type == importer::BOOKMARKS_HTML);
97 if (items_ & importer::HISTORY) {
104 if (items_ & importer::FAVORITES) {
111 if (items_ & importer::SEARCH_ENGINES) {
118 if (items_ & importer::PASSWORDS) {
162 void ImportProgressDialogGtk::ImportItemStarted(importer::ImportItem item)
218 namespace importer { namespace
    [all...]
  /external/chromium/chrome/browser/ui/views/importer/
import_lock_dialog_view.cc 5 #include "chrome/browser/ui/views/importer/import_lock_dialog_view.h"
9 #include "chrome/browser/importer/importer_host.h"
10 #include "chrome/browser/importer/importer_lock_dialog.h"
24 namespace importer { namespace
32 } // namespace importer
import_progress_dialog_view.cc 5 #include "chrome/browser/ui/views/importer/import_progress_dialog_view.h"
8 #include "chrome/browser/importer/importer_host.h"
9 #include "chrome/browser/importer/importer_observer.h"
10 #include "chrome/browser/importer/importer_progress_dialog.h"
89 // We're being deleted while importing, clean up state so that the importer
186 if (items_ & importer::HISTORY) {
192 if (items_ & importer::FAVORITES && !bookmarks_import_) {
198 if (items_ & importer::SEARCH_ENGINES) {
204 if (items_ & importer::PASSWORDS) {
210 if (items_ & importer::COOKIES)
283 namespace importer { namespace
    [all...]
  /external/chromium_org/chrome/browser/importer/
importer_list.h 17 namespace importer { namespace
33 importer::ImporterListObserver* observer);
38 void set_observer(importer::ImporterListObserver* observer) {
54 const importer::SourceProfile& GetSourceProfileAt(size_t index) const;
57 const importer::SourceProfile& GetSourceProfileForImporterType(
79 const std::vector<importer::SourceProfile*>& profiles);
82 ScopedVector<importer::SourceProfile> source_profiles_;
91 importer::ImporterListObserver* observer_;
importer_uma.cc 6 #include "chrome/browser/importer/importer_uma.h"
8 namespace importer { namespace
12 // The enum used to register importer use.
70 } // namespace importer
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_process_importer_host.h 14 #include "chrome/browser/importer/importer_progress_observer.h"
15 #include "chrome/browser/importer/profile_writer.h"
17 #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...]
  /external/chromium_org/chrome/browser/ui/gtk/importer/
import_lock_dialog_gtk.cc 5 #include "chrome/browser/ui/gtk/importer/import_lock_dialog_gtk.h"
11 #include "chrome/browser/importer/importer_lock_dialog.h"
21 namespace importer { namespace
29 } // namespace importer
  /external/chromium_org/chrome/browser/ui/views/importer/
import_lock_dialog_view.cc 5 #include "chrome/browser/ui/views/importer/import_lock_dialog_view.h"
10 #include "chrome/browser/importer/importer_lock_dialog.h"
22 namespace importer { namespace
30 } // namespace importer
  /external/chromium_org/tools/telemetry/telemetry/core/timeline/
inspector_importer.py 6 from telemetry.core.timeline import importer namespace
9 class InspectorTimelineImporter(importer.TimelineImporter):
trace_event_importer.py 6 This is a port of the trace event importer from
14 from telemetry.core.timeline import importer namespace
17 class TraceEventTimelineImporter(importer.TimelineImporter):
  /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/darwin-x86/2.7.5/lib/python2.7/test/
test_fork1.py 36 def importer(): function in function:ForkTest.test_import_lock_fork
43 t = threading.Thread(target=importer)
  /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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fork1.py 36 def importer(): function in function:ForkTest.test_import_lock_fork
43 t = threading.Thread(target=importer)
  /external/chromium_org/chrome/common/importer/
importer_data_types.h 16 #include "chrome/common/importer/importer_type.h"
20 namespace importer { namespace
34 // Information about a profile needed by an importer to do import work.
45 // thread on the browser process. This is only used by the Firefox importer.
79 } // namespace importer
  /external/javassist/sample/rmi/
CountApplet.java 12 private ObjectImporter importer; field in class:CountApplet
23 importer = new ObjectImporter(this);
34 importer = new ObjectImporter(cl.getServer(), cl.getPort());
53 counter = (Counter)importer.lookupObject(paramName);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
AssetLinkNode.java 154 BinaryImporter importer = BinaryImporter.getInstance(); local
163 child = (Spatial) importer.load(info);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
SavableSerializer.java 47 private BinaryImporter importer = new BinaryImporter(); field in class:SavableSerializer
107 Savable s = importer.load(in);

Completed in 435 milliseconds

12 3