Searched defs:delegate (Results 251 - 275 of 1356) sorted by path

<<11121314151617181920>>

/external/chromium_org/chrome/browser/
H A Dcommand_updater_unittest.cc35 FakeCommandUpdaterDelegate delegate; local
36 CommandUpdater command_updater(&delegate);
61 FakeCommandUpdaterDelegate delegate; local
62 CommandUpdater command_updater(&delegate);
80 FakeCommandUpdaterDelegate delegate; local
81 CommandUpdater command_updater(&delegate);
H A Dcrash_upload_list.cc18 CrashUploadList* CrashUploadList::Create(Delegate* delegate) { argument
24 return new CrashUploadListWin(delegate, upload_log_path);
26 return new CrashUploadList(delegate, upload_log_path);
30 CrashUploadList::CrashUploadList(Delegate* delegate, argument
32 : UploadList(delegate, upload_log_path) {}
H A Dcrash_upload_list_win.cc11 CrashUploadListWin::CrashUploadListWin(Delegate* delegate, argument
13 : CrashUploadList(delegate, upload_log_path) {}
/external/chromium_org/chrome/browser/custom_handlers/
H A Dprotocol_handler_registry.cc312 content::BrowserContext* context, Delegate* delegate)
314 delegate_(delegate),
311 ProtocolHandlerRegistry( content::BrowserContext* context, Delegate* delegate) argument
H A Dprotocol_handler_registry_unittest.cc333 FakeDelegate* delegate() const { return delegate_; } function in class:ProtocolHandlerRegistryTest
389 registry_.reset(new ProtocolHandlerRegistry(profile(), delegate()));
477 ASSERT_FALSE(delegate()->IsExternalHandlerRegistered("test"));
479 ASSERT_TRUE(delegate()->IsExternalHandlerRegistered("test"));
482 ASSERT_FALSE(delegate()->IsExternalHandlerRegistered("test"));
484 ASSERT_TRUE(delegate()->IsExternalHandlerRegistered("test"));
516 delegate()->Reset();
531 delegate()->RegisterExternalHandler("test");
773 ASSERT_FALSE(delegate()->IsFakeRegisteredWithOS("do"));
774 ASSERT_FALSE(delegate()
[all...]
/external/chromium_org/chrome/browser/devtools/
H A Dbrowser_list_tabcontents_provider.cc79 net::StreamListenSocket::Delegate* delegate,
88 return net::TCPListenSocket::CreateAndListen("127.0.0.1", port, delegate)
78 CreateSocketForTethering( net::StreamListenSocket::Delegate* delegate, std::string* name) argument
H A Ddevtools_embedder_message_dispatcher.cc178 void (T::*handler)(), T* delegate) {
181 base::Unretained(delegate)));
186 void (T::*handler)(A1), T* delegate) {
189 base::Unretained(delegate)));
194 void (T::*handler)(A1, A2), T* delegate) {
197 base::Unretained(delegate)));
202 void (T::*handler)(A1, A2, A3), T* delegate) {
205 base::Unretained(delegate)));
210 void (T::*handler)(A1, A2, A3, A4), T* delegate) {
213 base::Unretained(delegate)));
177 RegisterHandler(const std::string& method, void (T::*handler)(), T* delegate) argument
185 RegisterHandler(const std::string& method, void (T::*handler)(A1), T* delegate) argument
193 RegisterHandler(const std::string& method, void (T::*handler)(A1, A2), T* delegate) argument
201 RegisterHandler(const std::string& method, void (T::*handler)(A1, A2, A3), T* delegate) argument
209 RegisterHandler(const std::string& method, void (T::*handler)(A1, A2, A3, A4), T* delegate) argument
223 createForDevToolsFrontend( Delegate* delegate) argument
[all...]
H A Ddevtools_ui_bindings.cc103 // value "false". Otherwise, creates a dev tools confirm infobar and delegate
792 void DevToolsUIBindings::SetDelegate(Delegate* delegate) { argument
793 delegate_.reset(delegate);
845 // Call delegate first - it seeds importants bit of information.
/external/chromium_org/chrome/browser/devtools/device/
H A Dandroid_web_socket.cc26 WebSocketImpl(Delegate* delegate,
86 AndroidWebSocket::Delegate* delegate);
117 AndroidWebSocket::Delegate* delegate)
122 delegate_(delegate),
156 WebSocketImpl::WebSocketImpl(Delegate* delegate, argument
158 : delegate_(delegate),
277 AndroidDeviceManager::AndroidWebSocket::Delegate* delegate) {
279 device_message_loop_, this, socket, url, delegate);
112 AndroidWebSocketImpl( scoped_refptr<base::MessageLoopProxy> device_message_loop, scoped_refptr<Device> device, const std::string& socket_name, const std::string& url, AndroidWebSocket::Delegate* delegate) argument
274 CreateWebSocket( const std::string& socket, const std::string& url, AndroidDeviceManager::AndroidWebSocket::Delegate* delegate) argument
H A Ddevtools_android_bridge.cc322 AgentHostDelegate* delegate = new AgentHostDelegate(id, browser, debug_url);
324 content::DevToolsAgentHost::Create(delegate);
325 delegate->agent_host_ = result.get();
622 DevToolsAndroidBridge::AndroidWebSocket::Delegate* delegate) {
623 return device_->CreateWebSocket(socket_, url, delegate);
620 CreateWebSocket( const std::string& url, DevToolsAndroidBridge::AndroidWebSocket::Delegate* delegate) argument
/external/chromium_org/chrome/browser/dom_distiller/
H A Dlazy_dom_distiller_service.cc74 ViewRequestDelegate* delegate,
77 return instance()->ViewEntry(delegate, distiller_page.Pass(), entry_id);
81 ViewRequestDelegate* delegate,
84 return instance()->ViewUrl(delegate, distiller_page.Pass(), url);
73 ViewEntry( ViewRequestDelegate* delegate, scoped_ptr<DistillerPage> distiller_page, const std::string& entry_id) argument
80 ViewUrl( ViewRequestDelegate* delegate, scoped_ptr<DistillerPage> distiller_page, const GURL& url) argument
/external/chromium_org/chrome/browser/download/
H A Dchrome_download_manager_delegate_unittest.cc157 TestChromeDownloadManagerDelegate* delegate();
265 delegate()->DetermineDownloadTarget(
282 delegate()->CheckForFileExistence(
295 ChromeDownloadManagerDelegateTest::delegate() { function in class:__anon3573::ChromeDownloadManagerDelegateTest
337 EXPECT_CALL(*delegate(),
351 EXPECT_CALL(*delegate(),
374 EXPECT_CALL(*delegate(),
H A Ddownload_prefs.cc231 ChromeDownloadManagerDelegate* delegate = local
234 return delegate->download_prefs();
H A Ddownload_target_determiner.cc84 DownloadTargetDeterminerDelegate* delegate,
100 delegate_(delegate),
105 DCHECK(delegate);
875 DownloadTargetDeterminerDelegate* delegate,
881 delegate, callback);
80 DownloadTargetDeterminer( DownloadItem* download, const base::FilePath& initial_virtual_path, DownloadPrefs* download_prefs, DownloadTargetDeterminerDelegate* delegate, const CompletionCallback& callback) argument
872 Start(content::DownloadItem* download, const base::FilePath& initial_virtual_path, DownloadPrefs* download_prefs, DownloadTargetDeterminerDelegate* delegate, const CompletionCallback& callback) argument
H A Ddownload_target_determiner_unittest.cc58 // No-op delegate.
246 MockDownloadTargetDeterminerDelegate* delegate() { function in class:__anon3598::DownloadTargetDeterminerTest
386 item, initial_virtual_path, download_prefs_.get(), delegate(),
391 ::testing::Mock::VerifyAndClearExpectations(delegate());
578 ON_CALL(*delegate(), PromptUserForDownloadPath(_, _, _))
668 ON_CALL(*delegate(), CheckDownloadUrl(_, _, _))
719 ON_CALL(*delegate(), CheckDownloadUrl(_, _, _))
797 EXPECT_CALL(*delegate(), PromptUserForDownloadPath(_, prompt_path, _));
809 EXPECT_CALL(*delegate(), PromptUserForDownloadPath(_, prompt_path, _));
821 EXPECT_CALL(*delegate(), PromptUserForDownloadPat
[all...]
H A Ddownload_ui_controller.cc94 scoped_ptr<Delegate> delegate)
96 delegate_(delegate.Pass()) {
101 // The delegate should not be invoked after the profile has gone away. This
93 DownloadUIController(content::DownloadManager* manager, scoped_ptr<Delegate> delegate) argument
/external/chromium_org/chrome/browser/extensions/activity_log/
H A Dactivity_database.cc40 ActivityDatabase::ActivityDatabase(ActivityDatabase::Delegate* delegate) argument
41 : delegate_(delegate),
H A Dactivity_database_unittest.cc277 ActivityDatabaseTestPolicy* delegate = new ActivityDatabaseTestPolicy(); local
278 ActivityDatabase* activity_db = new ActivityDatabase(delegate);
282 delegate->Record(activity_db, action);
/external/chromium_org/chrome/browser/extensions/api/alarms/
H A Dalarm_manager.h73 // Override the default delegate. Callee assumes onwership. Used for testing.
74 void set_delegate(Delegate* delegate) { delegate_.reset(delegate); } argument
/external/chromium_org/chrome/browser/extensions/api/braille_display_private/
H A Dbraille_display_private_api.cc100 scoped_ptr<EventDelegate> delegate) {
101 event_delegate_ = delegate.Pass();
99 SetEventDelegateForTest( scoped_ptr<EventDelegate> delegate) argument
H A Dbraille_display_private_apitest.cc293 MockEventDelegate* delegate = new MockEventDelegate(); local
295 scoped_ptr<BrailleDisplayPrivateAPI::EventDelegate>(delegate).Pass());
296 return delegate;
339 // Create API and event delegate for sign in profile.
343 // Create api and delegate for the logged in user.
/external/chromium_org/chrome/browser/extensions/api/copresence/
H A Dcopresence_api_unittest.cc72 explicit MockCopresenceManager(CopresenceDelegate* delegate) argument
73 : delegate_(delegate) {}
139 CopresenceDelegate* delegate() { function in class:extensions::CopresenceApiUnittest
/external/chromium_org/chrome/browser/extensions/api/identity/
H A Dgaia_web_auth_flow.cc23 GaiaWebAuthFlow::GaiaWebAuthFlow(Delegate* delegate, argument
28 : delegate_(delegate),
H A Dgaia_web_auth_flow_unittest.cc19 explicit FakeWebAuthFlow(WebAuthFlow::Delegate* delegate) argument
20 : WebAuthFlow(delegate,
30 TestGaiaWebAuthFlow(GaiaWebAuthFlow::Delegate* delegate, argument
34 : GaiaWebAuthFlow(delegate, NULL, token_key, oauth2_client_id, "en-us"),
H A Didentity_apitest.cc183 OAuth2MintTokenFlow::Delegate* delegate)
184 : OAuth2MintTokenFlow(NULL, delegate, OAuth2MintTokenFlow::Parameters()),
186 delegate_(delegate) {
182 TestOAuth2MintTokenFlow(ResultType result, OAuth2MintTokenFlow::Delegate* delegate) argument

Completed in 629 milliseconds

<<11121314151617181920>>