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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/content/browser/
power_save_blocker_ozone.cc 14 class PowerSaveBlockerImpl::Delegate
15 : public base::RefCountedThreadSafe<PowerSaveBlockerImpl::Delegate> {
17 Delegate() {}
20 friend class base::RefCountedThreadSafe<Delegate>;
21 virtual ~Delegate() {}
23 DISALLOW_COPY_AND_ASSIGN(Delegate);
28 : delegate_(new Delegate()) {
  /external/chromium_org/remoting/host/
pairing_registry_delegate_mac.cc 13 scoped_ptr<PairingRegistry::Delegate> CreatePairingRegistryDelegate() {
14 return scoped_ptr<PairingRegistry::Delegate>();
config_watcher.h 19 class Delegate {
21 virtual ~Delegate() {}
31 virtual void Watch(Delegate* delegate) = 0;
  /external/chromium_org/ash/wm/
immersive_revealed_lock.h 21 class ASH_EXPORT Delegate {
32 virtual ~Delegate() {}
35 ImmersiveRevealedLock(const base::WeakPtr<Delegate>& delegate,
36 Delegate::AnimateReveal animate_reveal);
40 base::WeakPtr<Delegate> delegate_;
immersive_revealed_lock.cc 10 const base::WeakPtr<Delegate>& delegate,
11 Delegate::AnimateReveal animate_reveal)
12 : delegate_(delegate) {
  /external/chromium_org/chrome/browser/chromeos/login/enrollment/
auto_enrollment_check_screen_actor.h 15 class Delegate {
17 virtual ~Delegate() {}
22 // This method is called, when actor is being destroyed. Note, if Delegate
30 virtual void SetDelegate(Delegate* delegate) = 0;
mock_auto_enrollment_check_screen.h 28 virtual void SetDelegate(Delegate* screen) OVERRIDE;
30 MOCK_METHOD1(MockSetDelegate, void(Delegate* screen));
34 Delegate* screen_;
  /external/chromium_org/chrome/browser/chromeos/login/screens/
kiosk_autolaunch_screen_actor.h 17 class Delegate {
19 virtual ~Delegate() {}
24 // This method is called, when actor is being destroyed. Note, if Delegate
32 virtual void SetDelegate(Delegate* delegate) = 0;
kiosk_autostart_screen_actor.h 17 class Delegate {
19 virtual ~Delegate() {}
24 // This method is called, when actor is being destroyed. Note, if Delegate
34 virtual void SetDelegate(Delegate* delegate) = 0;
kiosk_enable_screen_actor.h 17 class Delegate {
19 virtual ~Delegate() {}
24 // This method is called, when actor is being destroyed. Note, if Delegate
32 virtual void SetDelegate(Delegate* delegate) = 0;
reset_screen_actor.h 17 class Delegate {
19 virtual ~Delegate() {}
24 // This method is called, when actor is being destroyed. Note, if Delegate
34 virtual void SetDelegate(Delegate* delegate) = 0;
wrong_hwid_screen_actor.h 17 class Delegate {
19 virtual ~Delegate() {}
24 // This method is called, when actor is being destroyed. Note, if Delegate
34 virtual void SetDelegate(Delegate* delegate) = 0;
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;
  /external/chromium_org/chrome/browser/chromeos/login/ui/
login_display.cc 9 LoginDisplay::Delegate::~Delegate() {}
11 LoginDisplay::LoginDisplay(Delegate* delegate,
13 : delegate_(delegate),
  /external/chromium_org/chrome/browser/extensions/api/identity/
identity_signin_flow.h 19 // When the flow completes, the delegate is notified, and on success will
23 class Delegate {
25 Delegate() {}
26 virtual ~Delegate() {}
32 DISALLOW_COPY_AND_ASSIGN(Delegate);
35 IdentitySigninFlow(Delegate* delegate,
46 Delegate* delegate_;
  /external/chromium_org/ui/views/linux_ui/
status_icon_linux.cc 9 StatusIconLinux::Delegate::~Delegate() {
status_icon_linux.h 24 // callbacks to a delegate. For the same reason, do not use StatusIconMenuModel.
27 class Delegate {
33 virtual ~Delegate();
52 Delegate* delegate() { return delegate_; } function in class:views::StatusIconLinux
53 void set_delegate(Delegate* delegate) { delegate_ = delegate; }
56 Delegate* delegate_;
  /external/chromium_org/chrome/browser/ui/views/
load_complete_listener.h 13 // A class which takes a delegate which can be notified after the first page
18 class Delegate {
24 virtual ~Delegate() {}
27 explicit LoadCompleteListener(Delegate* delegate);
39 // Delegate to be notified after the first page load has completed.
40 Delegate* delegate_;
  /external/chromium_org/jingle/notifier/listener/
push_notifications_listen_task.h 29 class Delegate {
34 virtual ~Delegate();
38 Delegate* delegate);
49 Delegate* delegate_;
54 typedef PushNotificationsListenTask::Delegate
  /external/chromium_org/chrome/browser/
crash_upload_list.h 14 // of the crash upload list with the given callback delegate.
15 static CrashUploadList* Create(Delegate* delegate);
21 // Creates a new crash upload list with the given callback delegate.
22 CrashUploadList(Delegate* delegate, const base::FilePath& upload_log_path);
  /external/chromium_org/chrome/test/base/
menu_model_test.h 19 // A menu delegate that counts the number of times certain things are called
21 class Delegate : public ui::SimpleMenuModel::Delegate,
24 Delegate() : execute_count_(0), enable_count_(0) {}
39 // match the number of times the delegate is called to ensure every item
43 Delegate delegate_;
  /external/chromium_org/mojo/services/native_viewport/
platform_viewport_stub.cc 10 scoped_ptr<PlatformViewport> PlatformViewport::Create(Delegate* delegate) {
11 return PlatformViewportHeadless::Create(delegate);
  /external/chromium_org/net/quic/
quic_alarm.h 15 // scheduled time, and execute the |OnAlarm| method of the delegate.
21 class NET_EXPORT_PRIVATE Delegate {
23 virtual ~Delegate() {}
31 explicit QuicAlarm(Delegate* delegate);
65 // delegates |OnAlarm| if a delegate is set, and if the deadline
74 scoped_ptr<Delegate> delegate_;
  /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() {}
53 // messages as well as for giving cycles to the delegate periodically. The
54 // message pump should take care to mix delegate callbacks with native
109 virtual void Run(Delegate* delegate) = 0;

Completed in 587 milliseconds

1 2 3 4 5 6 7 8 91011>>