HomeSort by relevance Sort by last modified time
    Searched defs:Delegate (Results 251 - 275 of 340) sorted by null

<<11121314

  /external/chromium_org/remoting/host/win/
worker_process_launcher.h 42 public base::win::ObjectWatcher::Delegate {
44 class Delegate {
46 virtual ~Delegate();
67 WorkerProcessLauncher(scoped_ptr<Delegate> launcher_delegate,
82 // Notification methods invoked by |Delegate|.
85 // Delegate::LaunchProcess(). The delegate has to make sure that this method
90 // The delegate must guarantee that no other notifications are delivered once
94 // Mirrors methods of IPC::Listener to be invoked by |Delegate|. |Delegate|
    [all...]
worker_process_launcher.cc 51 WorkerProcessLauncher::Delegate::~Delegate() {
55 scoped_ptr<WorkerProcessLauncher::Delegate> launcher_delegate,
  /external/chromium/chrome/browser/chromeos/
locale_change_guard.cc 26 class LocaleChangeGuard::Delegate : public NotificationDelegate {
28 explicit Delegate(chromeos::LocaleChangeGuard* master) : master_(master) {}
38 DISALLOW_COPY_AND_ASSIGN(Delegate);
158 new Delegate(this),
217 void LocaleChangeGuard::Delegate::Close(bool by_user) {
222 std::string LocaleChangeGuard::Delegate::id() const {
  /external/chromium/chrome/browser/ui/views/
browser_bubble.h 16 // Browser. If you don't install a delegate, the bubble will hide
22 // Delegate to browser bubble events.
23 class Delegate {
64 // Get/Set the delegate.
65 Delegate* delegate() const { return delegate_; } function in class:BrowserBubble
66 void set_delegate(Delegate* del) { delegate_ = del; }
69 // With no delegate, both of these default to Hiding the bubble.
133 // The delegate isn't owned by the bubble.
134 Delegate* delegate_
    [all...]
  /external/chromium/chrome/browser/ui/views/infobars/
infobar_container.cc 14 InfoBarContainer::Delegate::~Delegate() {
17 InfoBarContainer::InfoBarContainer(Delegate* delegate)
18 : delegate_(delegate),
60 // Now that everything is up to date, signal the delegate to re-layout.
96 void InfoBarContainer::RemoveDelegate(InfoBarDelegate* delegate) {
97 tab_contents_->RemoveInfoBar(delegate);
145 void InfoBarContainer::RemoveInfoBar(InfoBarDelegate* delegate,
147 // Search for the infobar associated with |delegate|. We cannot search fo
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
session_length_limiter.cc 29 // A default delegate implementation that returns the current time and does end
32 class SessionLengthLimiterDelegateImpl : public SessionLengthLimiter::Delegate {
60 SessionLengthLimiter::Delegate::~Delegate() {
69 SessionLengthLimiter::SessionLengthLimiter(Delegate* delegate,
71 : delegate_(delegate ? delegate : new SessionLengthLimiterDelegateImpl) {
141 timer_.reset(new base::OneShotTimer<SessionLengthLimiter::Delegate>);
143 &SessionLengthLimiter::Delegate::StopSession)
    [all...]
  /external/chromium_org/chrome/browser/custom_handlers/
protocol_handler_registry.h 72 // |Delegate| provides an interface for interacting asynchronously
75 class Delegate {
77 virtual ~Delegate();
135 // Creates a new instance. Assumes ownership of |delegate|.
136 ProtocolHandlerRegistry(Profile* profile, Delegate* delegate);
312 // The Delegate that registers / deregisters external handlers on our behalf.
313 scoped_ptr<Delegate> delegate_;
  /external/chromium_org/chrome/browser/local_discovery/
privet_device_lister.h 47 class Delegate {
  /external/chromium_org/chrome/browser/ui/search/
instant_loader.cc 36 InstantLoader::Delegate::~Delegate() {
39 InstantLoader::InstantLoader(Delegate* delegate)
40 : delegate_(delegate), stale_page_timer_(false, false) {}
  /external/chromium_org/jingle/notifier/base/
xmpp_connection.cc 22 XmppConnection::Delegate::~Delegate() {}
52 Delegate* delegate,
56 delegate_(delegate) {
119 Delegate* delegate = delegate_; local
121 delegate->OnError(error, subcode, stream_error);
  /external/chromium_org/jingle/notifier/communicator/
login.cc 30 Login::Delegate::~Delegate() {}
32 Login::Login(Delegate* delegate,
39 : delegate_(delegate),
66 // In the code below, we assume that calling a delegate method may end
  /external/chromium_org/net/android/java/src/org/chromium/net/
ProxyChangeListener.java 27 private Delegate mDelegate;
29 public interface Delegate {
41 public void setDelegateForTesting(Delegate delegate) {
42 mDelegate = delegate;
  /external/chromium_org/remoting/base/
plugin_thread_task_runner.cc 19 PluginThreadTaskRunner::Delegate::~Delegate() {
22 PluginThreadTaskRunner::PluginThreadTaskRunner(Delegate* delegate)
25 delegate_(delegate),
132 // Core somewhere, e.g. make the delegate ref-counted.
  /external/chromium_org/remoting/host/
config_file_watcher.cc 39 ConfigFileWatcher::Delegate* delegate);
56 // Reads the configuration file and passes it to the delegate.
70 base::WeakPtrFactory<ConfigFileWatcher::Delegate> delegate_weak_factory_;
71 base::WeakPtr<ConfigFileWatcher::Delegate> delegate_;
79 ConfigFileWatcher::Delegate::~Delegate() {
85 Delegate* delegate)
87 io_task_runner, delegate)) {
    [all...]
  /external/chromium_org/sync/notifier/
sync_invalidation_listener.h 53 public AckTracker::Delegate {
62 class SYNC_EXPORT_PRIVATE Delegate {
64 virtual ~Delegate();
79 // Does not take ownership of |delegate| or |state_writer|.
88 Delegate* delegate);
165 // AckTracker::Delegate implementation.
176 Delegate* delegate_;
  /external/chromium_org/ui/views/controls/textfield/
textfield_views_model.h 54 // Delegate interface implemented by the textfield view class to provided
56 class VIEWS_EXPORT Delegate {
62 virtual ~Delegate();
65 explicit TextfieldViewsModel(Delegate* delegate);
288 // Pointer to a TextfieldViewsModel::Delegate instance, should be provided by
290 Delegate* delegate_;
  /external/jmdns/src/javax/jmdns/
JmDNS.java 25 public static interface Delegate {
418 * Returns the instance delegate
420 * @return instance delegate
422 public abstract Delegate getDelegate();
425 * Sets the instance delegate
428 * new instance delegate
429 * @return previous instance delegate
431 public abstract Delegate setDelegate(Delegate value);
  /external/chromium/chrome/browser/profiles/
profile.h 155 class Delegate {
160 virtual ~Delegate() {}
182 Delegate* delegate);
  /external/chromium/net/spdy/
spdy_stream.h 43 // Delegate handles protocol specific behavior of spdy stream.
44 class Delegate {
46 Delegate() {}
85 friend class base::RefCounted<Delegate>;
86 virtual ~Delegate() {}
89 DISALLOW_COPY_AND_ASSIGN(Delegate);
98 // Set new |delegate|. |delegate| must not be NULL.
101 void SetDelegate(Delegate* delegate);
    [all...]
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
desktop_notifications.cc 132 class Delegate : public NotificationDelegate {
134 Delegate(const base::WeakPtr<DesktopNotifications>& host,
153 virtual ~Delegate() {}
158 DISALLOW_COPY_AND_ASSIGN(Delegate);
175 new Delegate(host->AsWeakPtr(), notification_id), profile);
348 // Will trigger Delegate::Close which will call RemoveNotificationById.
362 // Will trigger Delegate::Close which will call RemoveNotificationById.
  /external/chromium_org/chrome/browser/extensions/
extension_install_prompt.h 50 : public OAuth2MintTokenFlow::Delegate,
186 class Delegate {
196 virtual ~Delegate() {}
216 ExtensionInstallPrompt::Delegate*,
255 // We *MUST* eventually call either Proceed() or Abort() on |delegate|.
263 // We *MUST* eventually call either Proceed() or Abort() on |delegate|.
264 virtual void ConfirmStandaloneInstall(Delegate* delegate,
273 // We *MUST* eventually call either Proceed() or Abort() on |delegate|.
275 Delegate* delegate
    [all...]
  /external/chromium_org/chrome/browser/net/
http_pipelining_compatibility_client.h 54 class Delegate {
56 virtual ~Delegate() {}
79 Delegate* delegate,
100 : public internal::PipelineTestRequest::Delegate {
134 // PipelineTestRequest::Delegate interface.
  /external/chromium_org/chrome/browser/predictors/
resource_prefetcher.h 33 public net::URLRequest::Delegate {
72 class Delegate {
74 virtual ~Delegate() { }
85 // |delegate| has to outlive the ResourcePrefetcher. The ResourcePrefetcher
87 ResourcePrefetcher(Delegate* delegate,
125 // net::URLRequest::Delegate methods.
149 Delegate* const delegate_;
  /external/chromium_org/chrome/browser/ui/views/location_bar/
location_bar_view.h 92 class Delegate {
100 // Creates Widget for the given delegate.
124 virtual ~Delegate() {}
139 Delegate* delegate,
170 // Returns the delegate.
171 Delegate* delegate() const { return delegate_; } function in class:LocationBarView
441 // Our delegate.
442 Delegate* delegate_
    [all...]
  /external/chromium_org/chrome/service/cloud_print/
printer_job_handler.h 73 class Delegate {
75 // Notify delegate about authentication error.
77 // Notify delegate that printer has been deleted.
81 virtual ~Delegate() {}
95 Delegate* delegate);
111 // Begin Delegate implementations
113 // CloudPrintURLFetcher::Delegate implementation.
134 // JobStatusUpdater::Delegate implementation
148 // End Delegate implementation
    [all...]

Completed in 710 milliseconds

<<11121314