/external/chromium/base/files/ |
file_path_watcher.cc | 20 bool FilePathWatcher::Watch(const FilePath& path, Delegate* delegate) { 22 return impl_->Watch(path, delegate);
|
/external/chromium/base/ |
message_pump_default.h | 21 virtual void Run(Delegate* delegate);
|
/external/chromium/chrome/browser/chromeos/cros/ |
login_library.h | 19 class Delegate { 59 Delegate* callback) = 0; 68 Delegate* callback) = 0; 78 Delegate* callback) = 0;
|
/external/chromium/chrome/browser/chromeos/login/ |
auth_response_handler.h | 34 URLFetcher::Delegate* catcher) = 0;
|
login_html_dialog.h | 25 // Delegate class to get notifications from the dialog. 26 class Delegate { 28 virtual ~Delegate() {} 39 LoginHtmlDialog(Delegate* delegate, 76 Delegate* delegate_;
|
owner_manager.h | 35 class Delegate { 76 Delegate* d); 89 Delegate* d); 96 // Calls back a key update delegate on a given thread. 102 void CallDelegate(Delegate* d,
|
password_changed_view.h | 33 // Delegate class to get notifications from the view. 34 class Delegate { 36 virtual ~Delegate() {} 45 PasswordChangedView(Delegate* delegate, bool full_sync_disabled); 94 Delegate* delegate_;
|
/external/chromium/chrome/browser/chromeos/options/ |
network_config_view.h | 25 class Delegate { 34 virtual ~Delegate() {} 70 void set_delegate(Delegate* delegate) { 71 delegate_ = delegate; 90 Delegate* delegate_;
|
/external/chromium/chrome/browser/extensions/ |
extension_install_dialog.h | 20 ExtensionInstallUI::Delegate* delegate,
|
/external/chromium/chrome/browser/net/ |
connection_tester.h | 42 // "Delegate" object. 99 // "Delegate" is an interface for receiving start and completion notification 103 // delegate methods. 104 class Delegate { 106 virtual ~Delegate() {} 127 // Constructs a ConnectionTester that notifies test progress to |delegate|. 128 // |delegate| is owned by the caller, and must remain valid for the lifetime 130 ConnectionTester(Delegate* delegate, 168 Delegate* delegate_ [all...] |
/external/chromium/chrome/browser/policy/ |
asynchronous_policy_test_base.cc | 12 : AsynchronousPolicyProvider::Delegate() {}
|
/external/chromium/chrome/browser/translate/ |
options_menu_model.h | 16 public ui::SimpleMenuModel::Delegate { 21 // ui::SimpleMenuModel::Delegate implementation:
|
/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_view.h | 16 explicit InfoBarContainerView(Delegate* delegate);
|
/external/chromium/chrome/common/ |
json_pref_store.h | 30 class Delegate { 34 virtual ~Delegate() {}; 58 void ReadPrefs(Delegate* delegate); 83 Delegate* delegate_;
|
/external/chromium/chrome/common/net/ |
test_url_fetcher_factory.h | 20 // expected that you'll grab the delegate from the TestURLFetcher and invoke 34 // // Notify delegate with whatever data you want. 35 // fetcher->delegate()->OnURLFetchComplete(...); 50 Delegate* d); 53 // Overriden to do nothing. It is assumed the caller will notify the delegate. 74 // Returns the delegate installed on the URLFetcher. 75 Delegate* delegate() const { return URLFetcher::delegate(); } function in class:TestURLFetcher 96 URLFetcher::Delegate* d) [all...] |
/external/chromium/net/base/ |
network_change_notifier_win.h | 19 public base::win::ObjectWatcher::Delegate { 29 // ObjectWatcher::Delegate methods:
|
transport_security_state.h | 96 class Delegate { 103 virtual ~Delegate() {} 106 void SetDelegate(Delegate*); 139 // Our delegate who gets notified when we are dirtied, or NULL. 140 Delegate* delegate_;
|
/external/chromium/net/tools/fetch/ |
http_session.h | 14 class HttpSession : HttpListenSocket::Delegate {
|
/external/chromium_org/base/message_loop/ |
message_pump_default.h | 20 virtual void Run(Delegate* delegate) OVERRIDE;
|
/external/chromium_org/chrome/browser/chromeos/app_mode/ |
startup_app_launcher.h | 37 class Delegate { 51 virtual ~Delegate() {} 56 Delegate* delegate); 103 Delegate* delegate_;
|
/external/chromium_org/chrome/browser/chromeos/login/ |
login_web_dialog.h | 26 // Delegate class to get notifications from the dialog. 27 class Delegate { 33 virtual ~Delegate() {} 41 LoginWebDialog(Delegate* delegate, 85 Delegate* delegate_;
|
proxy_settings_dialog.h | 22 LoginWebDialog::Delegate* delegate,
|
/external/chromium_org/chrome/browser/devtools/ |
adb_web_socket.h | 12 class Delegate { 20 virtual ~Delegate() {} 27 Delegate* delegate); 56 Delegate* delegate_;
|
devtools_embedder_message_dispatcher.cc | 154 Delegate* delegate) { 156 BindToListParser(base::Bind(&Delegate::ActivateWindow, 157 base::Unretained(delegate)))); 159 BindToListParser(base::Bind(&Delegate::CloseWindow, 160 base::Unretained(delegate)))); 162 BindToListParser(base::Bind(&Delegate::SetWindowBounds, 163 base::Unretained(delegate)))); 165 BindToListParser(base::Bind(&Delegate::MoveWindow, 166 base::Unretained(delegate)))); [all...] |