/external/chromium/webkit/glue/ |
websocketstreamhandle_impl.cc | 56 DCHECK(!bridge_); 61 // |bridge_| is alive from Connect to DidClose, so Context must be alive 63 scoped_refptr<WebSocketStreamHandleBridge> bridge_; member in class:webkit_glue::WebSocketStreamHandleImpl::Context 71 bridge_(NULL) { 76 DCHECK(!bridge_); 77 bridge_ = WebSocketStreamHandleBridge::Create(handle_, this); 79 bridge_->Connect(url); 84 DCHECK(bridge_); 85 return bridge_->Send( 91 if (bridge_) [all...] |
/external/chromium/chrome/browser/importer/ |
external_process_importer_client.cc | 32 bridge_(bridge), 34 bridge_->AddRef(); 39 bridge_->Release(); 105 bridge_->NotifyStarted(); 122 bridge_->NotifyItemStarted(static_cast<importer::ImportItem>(item_data)); 131 bridge_->NotifyItemEnded(import_item); 157 bridge_->SetHistoryItems(history_rows_, 166 bridge_->AddHomePage(home_page); 192 bridge_->AddBookmarkEntries(bookmarks_, bookmarks_first_folder_name_, 214 bridge_->SetFavicons(favicons_) [all...] |
importer.h | 60 scoped_refptr<ImporterBridge> bridge_; member in class:Importer
|
firefox3_importer.cc | 72 bridge_ = bridge; 77 bridge_->NotifyStarted(); 85 bridge_->NotifyItemStarted(importer::HISTORY); 87 bridge_->NotifyItemEnded(importer::HISTORY); 91 bridge_->NotifyItemStarted(importer::FAVORITES); 93 bridge_->NotifyItemEnded(importer::FAVORITES); 96 bridge_->NotifyItemStarted(importer::SEARCH_ENGINES); 98 bridge_->NotifyItemEnded(importer::SEARCH_ENGINES); 101 bridge_->NotifyItemStarted(importer::PASSWORDS); 103 bridge_->NotifyItemEnded(importer::PASSWORDS) [all...] |
firefox2_importer.cc | 53 bridge_ = bridge; 61 bridge_->NotifyStarted(); 69 bridge_->NotifyItemStarted(importer::HISTORY); 71 bridge_->NotifyItemEnded(importer::HISTORY); 75 bridge_->NotifyItemStarted(importer::FAVORITES); 77 bridge_->NotifyItemEnded(importer::FAVORITES); 80 bridge_->NotifyItemStarted(importer::SEARCH_ENGINES); 82 bridge_->NotifyItemEnded(importer::SEARCH_ENGINES); 85 bridge_->NotifyItemStarted(importer::PASSWORDS); 87 bridge_->NotifyItemEnded(importer::PASSWORDS) [all...] |
ie_importer.cc | 86 bridge_ = bridge; 89 bridge_->NotifyStarted(); 98 bridge_->NotifyItemStarted(importer::HISTORY); 100 bridge_->NotifyItemEnded(importer::HISTORY); 103 bridge_->NotifyItemStarted(importer::FAVORITES); 105 bridge_->NotifyItemEnded(importer::FAVORITES); 108 bridge_->NotifyItemStarted(importer::SEARCH_ENGINES); 110 bridge_->NotifyItemEnded(importer::SEARCH_ENGINES); 113 bridge_->NotifyItemStarted(importer::PASSWORDS); 119 bridge_->NotifyItemEnded(importer::PASSWORDS) [all...] |
/external/chromium_org/webkit/child/ |
websocketstreamhandle_impl.cc | 67 DCHECK(!bridge_.get()); 72 // |bridge_| is alive from Connect to DidClose, so Context must be alive 74 scoped_refptr<WebSocketStreamHandleBridge> bridge_; member in class:webkit_glue::WebSocketStreamHandleImpl::Context 88 DCHECK(!bridge_.get()); 89 bridge_ = platform->CreateWebSocketStreamBridge(handle_, this); 91 bridge_->Connect(url); 96 DCHECK(bridge_.get()); 97 return bridge_->Send( 103 if (bridge_.get()) 104 bridge_->Close() [all...] |
/external/chromium/chrome/browser/ui/cocoa/extensions/ |
extension_infobar_controller.h | 36 scoped_ptr<InfobarBridge> bridge_; variable
|
/external/chromium/chrome/browser/ui/cocoa/ |
history_menu_cocoa_controller.h | 18 HistoryMenuBridge* bridge_; // weak; owns us variable
|
page_info_bubble_controller.h | 20 scoped_ptr<PageInfoModel::PageInfoModelObserver> bridge_; variable
|
search_engine_dialog_controller.h | 31 scoped_refptr<SearchEngineDialogControllerBridge> bridge_; variable
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
history_menu_cocoa_controller.h | 17 HistoryMenuBridge* bridge_; // weak; owns us variable
|
tab_modal_confirm_dialog_mac.h | 53 base::scoped_nsobject<TabModalConfirmDialogMacBridge> bridge_; member in class:TabModalConfirmDialogMac
|
/external/chromium_org/chrome/browser/ui/cocoa/infobars/ |
extension_infobar_controller.h | 32 scoped_ptr<InfobarBridge> bridge_; variable
|
/external/chromium_org/chrome/utility/importer/ |
importer.h | 39 scoped_refptr<ImporterBridge> bridge_; member in class:Importer
|
firefox_importer.cc | 102 bridge_ = bridge; 111 bridge_->NotifyStarted(); 113 bridge_->NotifyItemStarted(importer::HOME_PAGE); 115 bridge_->NotifyItemEnded(importer::HOME_PAGE); 122 bridge_->NotifyItemStarted(importer::HISTORY); 124 bridge_->NotifyItemEnded(importer::HISTORY); 128 bridge_->NotifyItemStarted(importer::FAVORITES); 130 bridge_->NotifyItemEnded(importer::FAVORITES); 133 bridge_->NotifyItemStarted(importer::SEARCH_ENGINES); 135 bridge_->NotifyItemEnded(importer::SEARCH_ENGINES) [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_context_menu_cocoa_controller.h | 32 scoped_ptr<BookmarkContextMenuDelegateBridge> bridge_; variable
|
/external/chromium_org/chrome/browser/importer/ |
external_process_importer_client.cc | 34 bridge_(bridge), 121 bridge_->NotifyStarted(); 138 bridge_->NotifyItemStarted(static_cast<importer::ImportItem>(item_data)); 147 bridge_->NotifyItemEnded(import_item); 173 bridge_->SetHistoryItems(history_rows_, 182 bridge_->AddHomePage(home_page); 206 bridge_->AddBookmarks(bookmarks_, bookmarks_first_folder_name_); 226 bridge_->SetFavicons(favicons_); 234 bridge_->SetPasswordForm(form); 242 bridge_->SetKeywords(url_keywords, unique_on_host_and_path) [all...] |
/external/chromium_org/chrome/utility/ |
profile_import_handler.cc | 39 bridge_ = new ExternalProcessImporterBridge( 63 source_profile, items, bridge_)); 82 bridge_ = NULL;
|
profile_import_handler.h | 56 scoped_refptr<ExternalProcessImporterBridge> bridge_; member in class:chrome::ProfileImportHandler
|
/external/chromium_org/content/child/fileapi/ |
webfilewriter_impl.cc | 130 bridge_(new WriterBridge(type)) { 137 RunOnMainThread(base::Bind(&WriterBridge::Truncate, bridge_, 144 RunOnMainThread(base::Bind(&WriterBridge::Write, bridge_, 151 RunOnMainThread(base::Bind(&WriterBridge::Cancel, bridge_, 157 DCHECK(!bridge_->waitable_event()); 162 if (bridge_->waitable_event()) 163 bridge_->WaitAndRun();
|
webfilewriter_impl.h | 45 scoped_refptr<WriterBridge> bridge_; member in class:content::WebFileWriterImpl
|
/external/chromium_org/chrome/browser/ui/cocoa/media_picker/ |
desktop_media_picker_controller.h | 46 scoped_ptr<DesktopMediaPickerBridge> bridge_; variable
|
/external/chromium_org/content/child/npapi/ |
plugin_url_fetcher.cc | 128 bridge_.reset(ChildThread::current()->resource_dispatcher()->CreateBridge( 134 bridge_->SetRequestBody(request_body.get()); 137 bridge_->Start(this); 146 bridge_->Cancel(); 151 bridge_->SetDefersLoading(false); 153 bridge_->Cancel(); 201 bridge_->SetDefersLoading(true);
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_menu_cocoa_controller.h | 23 BookmarkMenuBridge* bridge_; // weak; owns me variable
|