Searched defs:delegate (Results 276 - 300 of 1356) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/browser/local_discovery/
H A Dcloud_device_list.cc19 CloudDeviceList::CloudDeviceList(CloudDeviceListDelegate* delegate) argument
20 : delegate_(delegate) {
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Dmtp_device_map_service.cc33 // Note that this initializes the delegate asynchronously, but since
34 // the delegate will only be used from the IO thread, it is guaranteed
66 MTPDeviceAsyncDelegate* delegate) {
68 DCHECK(delegate);
72 async_delegate_map_[device_location] = delegate;
64 AddAsyncDelegate( const base::FilePath::StringType& device_location, MTPDeviceAsyncDelegate* delegate) argument
/external/chromium_org/chrome/browser/net/
H A Dpreconnect.cc70 net::NetworkDelegate* delegate = context->network_delegate(); local
71 if (delegate->CanEnablePrivacyMode(url, first_party_for_cookies))
/external/chromium_org/chrome/browser/notifications/
H A Dnotification.cc14 NotificationDelegate* delegate)
16 delegate->id(),
23 delegate),
27 delegate_(delegate) {}
40 NotificationDelegate* delegate)
42 delegate->id(),
49 delegate),
52 delegate_(delegate) {
65 delegate_(notification.delegate()) {}
77 delegate_ = notification.delegate();
7 Notification(const GURL& origin_url, const GURL& icon_url, const base::string16& title, const base::string16& body, blink::WebTextDirection dir, const base::string16& display_source, const base::string16& replace_id, NotificationDelegate* delegate) argument
29 Notification( message_center::NotificationType type, const GURL& origin_url, const base::string16& title, const base::string16& body, const gfx::Image& icon, blink::WebTextDirection dir, const message_center::NotifierId& notifier_id, const base::string16& display_source, const base::string16& replace_id, const message_center::RichNotificationData& rich_notification_data, NotificationDelegate* delegate) argument
[all...]
H A Dnotification.h39 NotificationDelegate* delegate);
52 NotificationDelegate* delegate);
74 // Id of the delegate embedded inside this instance.
75 std::string delegate_id() const { return delegate()->id(); }
77 NotificationDelegate* delegate() const { return delegate_.get(); } function in class:Notification
/external/chromium_org/chrome/browser/prefs/tracked/
H A Dtracked_split_preference.cc19 TrackedPreferenceValidationDelegate* delegate)
22 delegate_(delegate) {
14 TrackedSplitPreference( const std::string& pref_path, size_t reporting_id, size_t reporting_ids_count, PrefHashFilter::EnforcementLevel enforcement_level, TrackedPreferenceValidationDelegate* delegate) argument
/external/chromium_org/chrome/browser/renderer_context_menu/
H A Dspellchecker_submenu_observer_hunspell.cc29 ui::SimpleMenuModel::Delegate* delegate,
32 submenu_model_(delegate),
27 SpellCheckerSubMenuObserver( RenderViewContextMenuProxy* proxy, ui::SimpleMenuModel::Delegate* delegate, int group) argument
/external/chromium_org/chrome/browser/status_icons/
H A Dstatus_icon_menu_model.h21 // of its delegate. This is done so that we can easily identify when the menu
32 // Notifies the delegate that the item with the specified command id was
55 explicit StatusIconMenuModel(Delegate* delegate);
97 void set_delegate(Delegate* delegate) { delegate_ = delegate; } argument
98 Delegate* delegate() { return delegate_; } function in class:StatusIconMenuModel
/external/chromium_org/chrome/browser/ui/android/infobars/
H A Dconfirm_infobar.cc19 scoped_ptr<ConfirmInfoBarDelegate> delegate) {
20 return scoped_ptr<infobars::InfoBar>(new ConfirmInfoBar(delegate.Pass()));
26 ConfirmInfoBar::ConfirmInfoBar(scoped_ptr<ConfirmInfoBarDelegate> delegate) argument
27 : InfoBarAndroid(delegate.PassAs<infobars::InfoBarDelegate>()),
42 ConfirmInfoBarDelegate* delegate = GetDelegate(); local
45 env, delegate->GetMessageText());
48 env, delegate->GetLinkText());
71 ConfirmInfoBarDelegate* delegate = GetDelegate(); local
73 delegate->Accept() : delegate
18 CreateInfoBar( scoped_ptr<ConfirmInfoBarDelegate> delegate) argument
83 ConfirmInfoBarDelegate* delegate = GetDelegate(); local
[all...]
H A Dinfobar_android.cc19 InfoBarAndroid::InfoBarAndroid(scoped_ptr<infobars::InfoBarDelegate> delegate) argument
20 : infobars::InfoBar(delegate.Pass()) {
55 delegate()->InfoBarDismissed();
67 return ResourceMapper::MapFromChromiumId(delegate()->GetIconID());
/external/chromium_org/chrome/browser/ui/android/toolbar/
H A Dtoolbar_model_android.cc76 jlong Init(JNIEnv* env, jobject obj, jobject delegate) { argument
77 ToolbarModelAndroid* toolbar_model = new ToolbarModelAndroid(env, delegate);
/external/chromium_org/chrome/browser/ui/autofill/
H A Dloading_animation.cc18 LoadingAnimation::LoadingAnimation(gfx::AnimationDelegate* delegate, argument
20 : LinearAnimation(kDurationMs, kHertz, delegate),
/external/chromium_org/chrome/browser/ui/bookmarks/
H A Dbookmark_bubble_sign_in_delegate_unittest.cc71 scoped_ptr<BookmarkBubbleDelegate> delegate; local
72 delegate.reset(new BookmarkBubbleSignInDelegate(browser()));
74 delegate->OnSignInLinkClicked();
97 scoped_ptr<BookmarkBubbleDelegate> delegate; local
98 delegate.reset(new BookmarkBubbleSignInDelegate(incognito_browser.get()));
100 delegate->OnSignInLinkClicked();
133 scoped_ptr<BookmarkBubbleDelegate> delegate; local
134 delegate.reset(new BookmarkBubbleSignInDelegate(browser()));
141 delegate->OnSignInLinkClicked();
H A Dbookmark_tab_helper.h42 void set_delegate(BookmarkTabHelperDelegate* delegate) { argument
43 delegate_ = delegate;
65 // the delegate is notified.
97 // Our delegate, to notify when the url starred changed.
/external/chromium_org/chrome/browser/ui/cocoa/profiles/
H A Dprofile_signin_confirmation_view_controller.h53 delegate:(ui::ProfileSigninConfirmationDelegate*)delegate
65 @property(readonly, nonatomic) ui::ProfileSigninConfirmationDelegate* delegate; variable
/external/chromium_org/chrome/browser/ui/extensions/
H A Dextension_installed_bubble.cc34 ExtensionInstalledBubble::ExtensionInstalledBubble(Delegate* delegate, argument
38 : delegate_(delegate),
/external/chromium_org/chrome/browser/ui/search/
H A Dsearch_tab_helper.h97 void set_delegate(SearchTabHelperDelegate* delegate) { delegate_ = delegate; } argument
/external/chromium_org/chrome/browser/ui/tab_contents/
H A Dcore_tab_helper.h44 CoreTabHelperDelegate* delegate() const { return delegate_; } function in class:CoreTabHelper
/external/chromium_org/chrome/browser/ui/
H A Dtab_modal_confirm_dialog_browsertest.cc21 Delegate* delegate)
23 delegate_(delegate) {
19 MockTabModalConfirmDialogDelegate( content::WebContents* web_contents, Delegate* delegate) argument
/external/chromium_org/chrome/browser/ui/toolbar/
H A Dwrench_menu_badge_controller.cc79 Delegate* delegate)
80 : profile_(profile), delegate_(delegate) {
78 WrenchMenuBadgeController(Profile* profile, Delegate* delegate) argument
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dextension_keybinding_registry_views.cc24 Delegate* delegate)
25 : ExtensionKeybindingRegistry(profile, extension_filter, delegate),
20 ExtensionKeybindingRegistryViews( Profile* profile, views::FocusManager* focus_manager, ExtensionFilter extension_filter, Delegate* delegate) argument
/external/chromium_org/chrome/browser/ui/views/
H A Dexternal_protocol_dialog.cc35 scoped_ptr<ExternalProtocolDialogDelegate> delegate(
39 if (delegate->program_name().empty()) {
45 new ExternalProtocolDialog(delegate.PassAs<const ProtocolDialogDelegate>(),
121 scoped_ptr<const ProtocolDialogDelegate> delegate,
124 : delegate_(delegate.Pass()),
120 ExternalProtocolDialog( scoped_ptr<const ProtocolDialogDelegate> delegate, int render_process_host_id, int routing_id) argument
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dbrowser_desktop_window_tree_host_x11.cc23 explicit DesktopThemeProvider(ThemeService* delegate) argument
24 : delegate_(delegate) {
/external/chromium_org/chrome/browser/ui/views/infobars/
H A Dinfobar_container_view.cc16 InfoBarContainerView::InfoBarContainerView(Delegate* delegate) argument
17 : infobars::InfoBarContainer(delegate) {
/external/chromium_org/chrome/browser/ui/views/sync/
H A Done_click_signin_bubble_view_unittest.cc49 scoped_ptr<OneClickSigninBubbleDelegate> delegate; local
50 delegate.reset(new OneClickSigninBubbleTestDelegate(this));
56 delegate.Pass(),
211 // of the delegate should have been called.
225 // View should no longer be showing. No delegate method should have been
242 // of the delegate should have been called with |is_dialog| == false.
257 // of the delegate should have been called with |is_dialog| == true.

Completed in 4079 milliseconds

<<11121314151617181920>>