/external/chromium_org/ash/system/locale/ |
locale_observer.h | 14 class Delegate { 16 virtual ~Delegate() {} 24 virtual void OnLocaleChanged(Delegate* delegate,
|
/external/chromium_org/base/message_loop/ |
message_pump.h | 20 // these delegate methods are used. 21 class BASE_EXPORT Delegate { 23 virtual ~Delegate() {} 45 // Via the two required out pointers, returns the length of the Delegate's 65 // messages as well as for giving cycles to the delegate periodically. The 66 // message pump should take care to mix delegate callbacks with native 121 virtual void Run(Delegate* delegate) = 0;
|
/external/chromium_org/chrome/browser/chromeos/login/screens/ |
eula_screen_actor.h | 20 class Delegate { 22 virtual ~Delegate() {} 39 // This method is called, when actor is being destroyed. Note, if Delegate 49 virtual void SetDelegate(Delegate* delegate) = 0;
|
network_screen_actor.h | 16 class Delegate { 18 virtual ~Delegate() {} 26 virtual void SetDelegate(Delegate* screen) = 0;
|
terms_of_service_screen_actor.h | 16 class Delegate { 18 virtual ~Delegate() {} 33 virtual void SetDelegate(Delegate* screen) = 0;
|
/external/chromium_org/chrome/browser/ui/gtk/ |
view_id_util.h | 14 // Use this delegate to override default view id searches. 15 class Delegate { 20 virtual ~Delegate() {} 29 static void SetDelegateForWidget(GtkWidget* widget, Delegate* delegate);
|
/external/chromium_org/net/base/ |
network_config_watcher_mac.h | 23 // NOTE: The lifetime of Delegate is expected to exceed the lifetime of 25 class Delegate { 27 virtual ~Delegate() {} 29 // Called to let the delegate do any setup work the must be run on the 48 explicit NetworkConfigWatcherMac(Delegate* delegate);
|
/external/chromium/chrome/browser/chromeos/login/ |
camera_controller.h | 16 class CameraController: public Camera::Delegate { 18 class Delegate { 20 virtual ~Delegate() {} 29 explicit CameraController(Delegate* delegate); 47 // Camera::Delegate implementation: 72 Delegate* delegate_;
|
user_image_view.h | 26 public TakePhotoView::Delegate, 27 public DefaultImagesView::Delegate { 29 // Delegate class to get notifications from the view. 30 class Delegate { 32 virtual ~Delegate() {} 49 explicit UserImageView(Delegate* delegate); 76 // Overridden from TakePhotoView::Delegate. 80 // Overridden from DefaultImagesView::Delegate. 95 Delegate* delegate_ [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_uninstall_dialog.h | 19 class Delegate { 28 virtual ~Delegate() {} 39 void ConfirmUninstall(Delegate* delegate, const Extension* extension); 44 Delegate* delegate, 60 // The delegate we will call Accepted/Canceled on after confirmation UI. 61 Delegate* delegate_;
|
/external/chromium_org/chrome/browser/chromeos/ |
session_length_limiter.h | 26 class Delegate { 28 virtual ~Delegate(); 37 SessionLengthLimiter(Delegate* delegate, bool browser_restarted); 63 scoped_ptr<Delegate> delegate_; 66 scoped_ptr<base::OneShotTimer<SessionLengthLimiter::Delegate> > timer_;
|
/external/chromium_org/chrome/browser/chromeos/status/ |
network_menu.h | 64 class Delegate { 66 virtual ~Delegate(); 74 explicit NetworkMenu(Delegate* delegate); 87 Delegate* delegate() const { return delegate_; } function in class:chromeos::NetworkMenu 89 // Weak ptr to delegate. 90 Delegate* delegate_;
|
/external/chromium_org/chromeos/dbus/ |
fake_bluetooth_profile_service_provider.h | 25 Delegate *delegate); 29 // BluetoothProfileServiceProvider::Delegate method on the object passed on 35 const Delegate::Options& options, 36 const Delegate::ConfirmationCallback& callback); 39 const Delegate::ConfirmationCallback& callback); 48 // All incoming method calls are passed on to the Delegate and a callback 51 Delegate* delegate_;
|
fake_bluetooth_agent_service_provider.h | 27 Delegate *delegate); 30 // Each of these calls the equivalent BluetoothAgentServiceProvider::Delegate 34 const Delegate::PinCodeCallback& callback); 38 const Delegate::PasskeyCallback& callback); 44 const Delegate::ConfirmationCallback& callback); 47 const Delegate::ConfirmationCallback& callback); 51 const Delegate::ConfirmationCallback& callback); 60 // All incoming method calls are passed on to the Delegate and a callback 63 Delegate* delegate_ [all...] |
/external/chromium_org/jingle/notifier/listener/ |
push_notifications_subscribe_task.h | 22 class Delegate { 24 virtual ~Delegate() {} 31 Delegate* delegate); 46 Delegate* delegate_; 54 typedef PushNotificationsSubscribeTask::Delegate
|
send_ping_task.h | 23 class Delegate { 28 virtual ~Delegate(); 31 SendPingTask(buzz::XmppTaskParentInterface* parent, Delegate* delegate); 45 Delegate* delegate_; 50 typedef SendPingTask::Delegate SendPingTaskDelegate;
|
/external/chromium_org/content/browser/ |
power_save_blocker_android.cc | 22 class PowerSaveBlockerImpl::Delegate 23 : public base::RefCountedThreadSafe<PowerSaveBlockerImpl::Delegate> { 25 explicit Delegate(NativeView view_android) { 35 friend class base::RefCountedThreadSafe<Delegate>; 36 ~Delegate() {} 40 DISALLOW_COPY_AND_ASSIGN(Delegate); 43 void PowerSaveBlockerImpl::Delegate::ApplyBlock() { 51 void PowerSaveBlockerImpl::Delegate::RemoveBlock() { 68 base::Bind(&Delegate::RemoveBlock, delegate_)); 76 delegate_ = new Delegate(view_android) [all...] |
/external/chromium/chrome/browser/chromeos/offline/ |
offline_load_page.h | 27 // A delegate class that is called when the interstitinal page 29 class Delegate { 31 Delegate() {} 32 virtual ~Delegate() {} 38 DISALLOW_COPY_AND_ASSIGN(Delegate); 41 const GURL& url, Delegate* delegate); 48 Delegate* delegate); 80 Delegate* delegate_ [all...] |
/external/chromium_org/cloud_print/gcp20/prototype/ |
cloud_print_request.h | 17 // Delegate should delete this object once it is deleting. 21 class Delegate { 23 Delegate() {} 24 virtual ~Delegate() {} 45 Delegate* delegate); 51 Delegate* delegate); 63 Delegate* delegate); [all...] |
/external/chromium_org/net/quic/ |
quic_reliable_client_stream.h | 25 // Delegate handles protocol specific behavior of a quic stream. 26 class NET_EXPORT_PRIVATE Delegate { 28 Delegate() {} 44 virtual ~Delegate() {} 47 DISALLOW_COPY_AND_ASSIGN(Delegate); 69 // Set new |delegate|. |delegate| must not be NULL. 71 // called on the delegate. 72 void SetDelegate(Delegate* delegate); [all...] |
/external/chromium/base/threading/ |
simple_thread.h | 15 // a new thread, and execute the Delegate's virtual Run() in this new thread 21 // Start() having been called (and a thread never created). The Delegate 29 // class MyThreadRunner : public DelegateSimpleThread::Delegate { ... }; 58 class BASE_API SimpleThread : public PlatformThread::Delegate { 104 // Overridden from PlatformThread::Delegate: 119 class BASE_API Delegate { 121 Delegate() { } 122 virtual ~Delegate() { } 126 DelegateSimpleThread(Delegate* delegate, [all...] |
/external/chromium_org/base/threading/ |
simple_thread.h | 15 // a new thread, and execute the Delegate's virtual Run() in this new thread 21 // Start() having been called (and a thread never created). The Delegate 29 // class MyThreadRunner : public DelegateSimpleThread::Delegate { ... }; 58 class BASE_EXPORT SimpleThread : public PlatformThread::Delegate { 104 // Overridden from PlatformThread::Delegate: 125 class BASE_EXPORT Delegate { 127 Delegate() { } 128 virtual ~Delegate() { } 132 DelegateSimpleThread(Delegate* delegate, [all...] |
/external/chromium/base/synchronization/ |
waitable_event_watcher.h | 36 // class MyClass : public base::WaitableEventWatcher::Delegate { 73 class Delegate { 75 virtual ~Delegate() { } 89 // When @event is signaled, the given delegate is called on the thread of the 90 // current message loop when StartWatching is called. The delegate is not 93 bool StartWatching(WaitableEvent* event, Delegate* delegate); 100 // The delegate will *not* be called for the current watch after this 101 // function returns. Since the delegate runs on the same thread as this 113 // Return the delegate, or NULL if there is no delegate 115 Delegate* delegate() { function in class:base::WaitableEventWatcher [all...] |
/external/chromium_org/chrome/browser/chromeos/app_mode/ |
kiosk_profile_loader.h | 25 // successful, it prepares app profile then calls the delegate. 26 class KioskProfileLoader : public LoginPerformer::Delegate, 27 public LoginUtils::Delegate { 29 class Delegate { 35 virtual ~Delegate() {} 40 Delegate* delegate); 44 // Starts profile load. Calls delegate on success or failure. 53 // LoginPerformer::Delegate overrides 61 // LoginUtils::Delegate implementation [all...] |
/external/chromium_org/content/browser/speech/ |
speech_recognition_engine.h | 27 // No delegate callbacks are allowed before StartRecognition or after 33 class Delegate { 44 virtual ~Delegate() {} 95 void set_delegate(Delegate* delegate) { delegate_ = delegate; } 98 Delegate* delegate() const { return delegate_; } function in class:content::SpeechRecognitionEngine 101 Delegate* delegate_; 105 // Visual Studio where it gets confused between multiple Delegate [all...] |