HomeSort by relevance Sort by last modified time
    Searched defs:TestDelegate (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/page_capture/
page_capture_api.h 30 class TestDelegate {
36 static void SetTestDelegate(TestDelegate* delegate);
  /external/chromium_org/chrome/browser/
image_holder_unittest.cc 15 class TestDelegate : public chrome::ImageHolderDelegate {
17 TestDelegate() : on_fetch_complete_called_(false) {}
31 TestDelegate delegate;
46 TestDelegate delegate;
64 TestDelegate delegate;
  /external/chromium_org/chrome/browser/extensions/api/push_messaging/
obfuscated_gaia_id_fetcher_unittest.cc 21 class TestDelegate : public extensions::ObfuscatedGaiaIdFetcher::Delegate {
31 TestDelegate() : succeeded_(false), failed_(false) {}
32 virtual ~TestDelegate() {}
39 DISALLOW_COPY_AND_ASSIGN(TestDelegate);
77 TestDelegate delegate;
91 TestDelegate delegate;
  /external/chromium_org/chrome/browser/notifications/
message_center_notifications_browsertest.cc 70 class TestDelegate : public NotificationDelegate {
72 explicit TestDelegate(const std::string& id) : id_(id) {}
93 virtual ~TestDelegate() {}
97 DISALLOW_COPY_AND_ASSIGN(TestDelegate);
101 TestDelegate** delegate = NULL) {
102 TestDelegate* new_delegate = new TestDelegate(id);
119 TestDelegate** delegate = NULL) {
120 TestDelegate* new_delegate = new TestDelegate(id)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
file_task_executor_unittest.cc 24 class TestDelegate : public FileTaskExecutorDelegate {
26 explicit TestDelegate(std::set<std::string>* opend_urls)
96 TestDelegate* const delegate_ptr = new TestDelegate(&opend_urls);
130 TestDelegate* const delegate_ptr = new TestDelegate(&opend_urls);
  /external/chromium_org/net/tools/quic/
quic_epoll_connection_helper_test.cc 18 class TestDelegate : public QuicAlarm::Delegate {
20 TestDelegate() : fired_(false) {}
57 TestDelegate* delegate = new TestDelegate();
70 TestDelegate* delegate = new TestDelegate();
85 TestDelegate* delegate = new TestDelegate();
107 TestDelegate* delegate = new TestDelegate();
    [all...]
  /external/chromium_org/chrome/browser/chromeos/power/
renderer_freezer_unittest.cc 51 // Actions that can be returned by TestDelegate::GetActions().
58 class TestDelegate : public RendererFreezer::Delegate, public ActionRecorder {
60 TestDelegate()
65 virtual ~TestDelegate() {}
104 DISALLOW_COPY_AND_ASSIGN(TestDelegate);
113 test_delegate_(new TestDelegate()) {
131 TestDelegate* test_delegate_;
  /external/chromium_org/chrome/browser/download/
download_ui_controller_unittest.cc 37 class TestDelegate : public DownloadUIController::Delegate {
39 explicit TestDelegate(base::WeakPtr<content::DownloadItem*> receiver);
40 virtual ~TestDelegate() {}
48 TestDelegate::TestDelegate(base::WeakPtr<content::DownloadItem*> receiver)
52 void TestDelegate::OnNewDownloadReady(content::DownloadItem* item) {
92 // Returns a TestDelegate. Invoking OnNewDownloadReady on the returned
237 new TestDelegate(notified_item_receiver_factory_.GetWeakPtr()));
  /external/chromium_org/content/renderer/pepper/
pepper_device_enumeration_host_helper_unittest.cc 28 class TestDelegate : public PepperDeviceEnumerationHostHelper::Delegate,
29 public base::SupportsWeakPtr<TestDelegate> {
31 TestDelegate() : last_used_id_(0) {}
33 virtual ~TestDelegate() { CHECK(callbacks_.empty()); }
72 DISALLOW_COPY_AND_ASSIGN(TestDelegate);
120 TestDelegate delegate_;
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
get_file_for_saving_operation_unittest.cc 28 class TestDelegate : public OperationDelegate {
68 TestDelegate delegate_;
  /external/chromium_org/net/quic/
quic_connection_helper_test.cc 16 class TestDelegate : public QuicAlarm::Delegate {
18 TestDelegate() : fired_(false) {}
54 TestDelegate* delegate = new TestDelegate();
71 TestDelegate* delegate = new TestDelegate();
89 TestDelegate* delegate = new TestDelegate();
116 TestDelegate* delegate = new TestDelegate();
    [all...]
  /external/chromium_org/extensions/browser/
content_verify_job.h 70 class TestDelegate {
91 static void SetDelegateForTests(TestDelegate* delegate);
  /external/chromium_org/base/files/
file_path_watcher_browsertest.cc 38 class TestDelegate;
49 void OnChange(TestDelegate* delegate) {
55 void Register(TestDelegate* delegate) {
71 void RecordChange(TestDelegate* delegate) {
83 std::set<TestDelegate*> delegates_;
86 std::set<TestDelegate*> signaled_;
106 // Instead, TestDelegate gets the notifications from FilePathWatcher and uses
108 class TestDelegate : public TestDelegateBase {
110 explicit TestDelegate(NotificationCollector* collector)
114 virtual ~TestDelegate() {}
    [all...]
  /external/chromium_org/chrome/browser/chromeos/fileapi/
external_file_url_request_job_unittest.cc 83 class TestDelegate : public net::TestDelegate {
85 TestDelegate() {}
89 // net::TestDelegate override.
94 net::TestDelegate::OnReceivedRedirect(
101 DISALLOW_COPY_AND_ASSIGN(TestDelegate);
137 test_delegate_.reset(new TestDelegate);
182 scoped_ptr<TestDelegate> test_delegate_;
273 test_delegate_.reset(new TestDelegate);
  /external/chromium_org/net/url_request/
url_request_test_util.cc 159 TestDelegate::TestDelegate()
181 TestDelegate::~TestDelegate() {}
183 void TestDelegate::ClearFullRequestHeaders() {
188 void TestDelegate::OnReceivedRedirect(URLRequest* request,
206 void TestDelegate::OnBeforeNetworkStart(URLRequest* request, bool* defer) {
215 void TestDelegate::OnAuthRequired(URLRequest* request,
225 void TestDelegate::OnSSLCertificateError(URLRequest* request,
239 void TestDelegate::OnResponseStarted(URLRequest* request)
    [all...]
url_request_test_util.h 125 class TestDelegate : public URLRequest::Delegate {
127 TestDelegate();
128 virtual ~TestDelegate();
  /external/chromium_org/ash/
root_window_controller_unittest.cc 48 class TestDelegate : public views::WidgetDelegateView {
50 explicit TestDelegate(bool system_modal) : system_modal_(system_modal) {}
51 virtual ~TestDelegate() {}
65 DISALLOW_COPY_AND_ASSIGN(TestDelegate);
112 new TestDelegate(true), CurrentContext(), bounds);
120 views::Widget::CreateWindowWithParentAndBounds(new TestDelegate(true),
    [all...]
  /external/chromium_org/ui/views/controls/textfield/
textfield_unittest.cc 628 class TestDelegate : public ui::TextEditKeyBindingsDelegateAuraLinux {
630 TestDelegate() {}
631 virtual ~TestDelegate() {}
640 DISALLOW_COPY_AND_ASSIGN(TestDelegate);
643 TestDelegate delegate;
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_message_bubble_controller_unittest.cc 44 class TestDelegate {
46 TestDelegate()
76 public TestDelegate {
101 public TestDelegate {
125 public TestDelegate {
150 public TestDelegate {
175 public TestDelegate {
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/tests/
update_nacl_manifest_test.py 204 class TestDelegate(update_nacl_manifest.Delegate):
304 self.delegate = TestDelegate(self.manifest, self.history.history,

Completed in 414 milliseconds