| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 void FetchManifest( | 125 void FetchManifest( |
| 126 blink::WebView* view, | 126 blink::WebView* view, |
| 127 const GURL& url, | 127 const GURL& url, |
| 128 const base::Callback<void(const blink::WebURLResponse& response, | 128 const base::Callback<void(const blink::WebURLResponse& response, |
| 129 const std::string& data)>& callback) override; | 129 const std::string& data)>& callback) override; |
| 130 void SetPermission(const std::string& name, | 130 void SetPermission(const std::string& name, |
| 131 const std::string& value, | 131 const std::string& value, |
| 132 const GURL& origin, | 132 const GURL& origin, |
| 133 const GURL& embedding_origin) override; | 133 const GURL& embedding_origin) override; |
| 134 void ResetPermissions() override; | 134 void ResetPermissions() override; |
| 135 bool AddMediaStreamSourceAndTrack(blink::WebMediaStream* stream) override; |
| 135 cc::SharedBitmapManager* GetSharedBitmapManager() override; | 136 cc::SharedBitmapManager* GetSharedBitmapManager() override; |
| 136 void DispatchBeforeInstallPromptEvent( | 137 void DispatchBeforeInstallPromptEvent( |
| 137 int request_id, | 138 int request_id, |
| 138 const std::vector<std::string>& event_platforms, | 139 const std::vector<std::string>& event_platforms, |
| 139 const base::Callback<void(bool)>& callback) override; | 140 const base::Callback<void(bool)>& callback) override; |
| 140 void ResolveBeforeInstallPromptPromise( | 141 void ResolveBeforeInstallPromptPromise( |
| 141 int request_id, | 142 int request_id, |
| 142 const std::string& platform) override; | 143 const std::string& platform) override; |
| 143 blink::WebPlugin* CreatePluginPlaceholder( | 144 blink::WebPlugin* CreatePluginPlaceholder( |
| 144 blink::WebLocalFrame* frame, | 145 blink::WebLocalFrame* frame, |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 | 193 |
| 193 scoped_ptr<LeakDetector> leak_detector_; | 194 scoped_ptr<LeakDetector> leak_detector_; |
| 194 bool needs_leak_detector_; | 195 bool needs_leak_detector_; |
| 195 | 196 |
| 196 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); | 197 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); |
| 197 }; | 198 }; |
| 198 | 199 |
| 199 } // namespace content | 200 } // namespace content |
| 200 | 201 |
| 201 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ | 202 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ |
| OLD | NEW |