[safe-browsing] Database full hash matches like prefix match.
[chromium-blink-merge.git] / content / shell / renderer / test_runner / WebUserMediaClientMock.h
blobe8f2e83868500fd7a7360278c2a36f6ae62e68ce
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_WEBUSERMEDIACLIENTMOCK_H_
6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_WEBUSERMEDIACLIENTMOCK_H_
8 #include "base/basictypes.h"
9 #include "content/shell/renderer/test_runner/TestCommon.h"
10 #include "content/shell/renderer/test_runner/WebTask.h"
11 #include "third_party/WebKit/public/platform/WebString.h"
12 #include "third_party/WebKit/public/platform/WebURL.h"
13 #include "third_party/WebKit/public/web/WebUserMediaClient.h"
15 namespace WebTestRunner {
17 class WebTestDelegate;
19 class WebUserMediaClientMock : public blink::WebUserMediaClient {
20 public:
21 explicit WebUserMediaClientMock(WebTestDelegate*);
22 virtual ~WebUserMediaClientMock() { }
24 virtual void requestUserMedia(const blink::WebUserMediaRequest&) OVERRIDE;
25 virtual void cancelUserMediaRequest(const blink::WebUserMediaRequest&) OVERRIDE;
26 virtual void requestMediaDevices(const blink::WebMediaDevicesRequest&) OVERRIDE;
27 virtual void cancelMediaDevicesRequest(const blink::WebMediaDevicesRequest&) OVERRIDE;
29 // Task related methods
30 WebTaskList* taskList() { return &m_taskList; }
32 private:
33 WebTaskList m_taskList;
34 WebTestDelegate* m_delegate;
36 DISALLOW_COPY_AND_ASSIGN(WebUserMediaClientMock);
41 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEBUSERMEDIACLIENTMOCK_H_