OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ | 5 #ifndef CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ |
6 #define CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ | 6 #define CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 void FetchManifest( | 126 void FetchManifest( |
127 blink::WebView* view, | 127 blink::WebView* view, |
128 const GURL& url, | 128 const GURL& url, |
129 const base::Callback<void(const blink::WebURLResponse& response, | 129 const base::Callback<void(const blink::WebURLResponse& response, |
130 const std::string& data)>& callback) override; | 130 const std::string& data)>& callback) override; |
131 void SetPermission(const std::string& name, | 131 void SetPermission(const std::string& name, |
132 const std::string& value, | 132 const std::string& value, |
133 const GURL& origin, | 133 const GURL& origin, |
134 const GURL& embedding_origin) override; | 134 const GURL& embedding_origin) override; |
135 void ResetPermissions() override; | 135 void ResetPermissions() override; |
136 bool AddMediaStreamSourceAndTrack(blink::WebMediaStream* stream) override; | 136 bool AddMediaStreamVideoSourceAndTrack( |
| 137 blink::WebMediaStream* stream) override; |
| 138 bool AddMediaStreamAudioSourceAndTrack( |
| 139 blink::WebMediaStream* stream) override; |
137 cc::SharedBitmapManager* GetSharedBitmapManager() override; | 140 cc::SharedBitmapManager* GetSharedBitmapManager() override; |
138 void DispatchBeforeInstallPromptEvent( | 141 void DispatchBeforeInstallPromptEvent( |
139 int request_id, | 142 int request_id, |
140 const std::vector<std::string>& event_platforms, | 143 const std::vector<std::string>& event_platforms, |
141 const base::Callback<void(bool)>& callback) override; | 144 const base::Callback<void(bool)>& callback) override; |
142 void ResolveBeforeInstallPromptPromise( | 145 void ResolveBeforeInstallPromptPromise( |
143 int request_id, | 146 int request_id, |
144 const std::string& platform) override; | 147 const std::string& platform) override; |
145 blink::WebPlugin* CreatePluginPlaceholder( | 148 blink::WebPlugin* CreatePluginPlaceholder( |
146 blink::WebLocalFrame* frame, | 149 blink::WebLocalFrame* frame, |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 | 197 |
195 scoped_ptr<LeakDetector> leak_detector_; | 198 scoped_ptr<LeakDetector> leak_detector_; |
196 bool needs_leak_detector_; | 199 bool needs_leak_detector_; |
197 | 200 |
198 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); | 201 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); |
199 }; | 202 }; |
200 | 203 |
201 } // namespace content | 204 } // namespace content |
202 | 205 |
203 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ | 206 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ |
OLD | NEW |