| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 const std::string& data)>& callback) override; | 132 const std::string& data)>& callback) override; |
| 133 void SetPermission(const std::string& name, | 133 void SetPermission(const std::string& name, |
| 134 const std::string& value, | 134 const std::string& value, |
| 135 const GURL& origin, | 135 const GURL& origin, |
| 136 const GURL& embedding_origin) override; | 136 const GURL& embedding_origin) override; |
| 137 void ResetPermissions() override; | 137 void ResetPermissions() override; |
| 138 bool AddMediaStreamVideoSourceAndTrack( | 138 bool AddMediaStreamVideoSourceAndTrack( |
| 139 blink::WebMediaStream* stream) override; | 139 blink::WebMediaStream* stream) override; |
| 140 bool AddMediaStreamAudioSourceAndTrack( | 140 bool AddMediaStreamAudioSourceAndTrack( |
| 141 blink::WebMediaStream* stream) override; | 141 blink::WebMediaStream* stream) override; |
| 142 void AddMediaStream(blink::WebMediaStream* stream) override; |
| 142 cc::SharedBitmapManager* GetSharedBitmapManager() override; | 143 cc::SharedBitmapManager* GetSharedBitmapManager() override; |
| 143 void DispatchBeforeInstallPromptEvent( | 144 void DispatchBeforeInstallPromptEvent( |
| 144 int request_id, | 145 int request_id, |
| 145 const std::vector<std::string>& event_platforms, | 146 const std::vector<std::string>& event_platforms, |
| 146 const base::Callback<void(bool)>& callback) override; | 147 const base::Callback<void(bool)>& callback) override; |
| 147 void ResolveBeforeInstallPromptPromise( | 148 void ResolveBeforeInstallPromptPromise( |
| 148 int request_id, | 149 int request_id, |
| 149 const std::string& platform) override; | 150 const std::string& platform) override; |
| 150 blink::WebPlugin* CreatePluginPlaceholder( | 151 blink::WebPlugin* CreatePluginPlaceholder( |
| 151 blink::WebLocalFrame* frame, | 152 blink::WebLocalFrame* frame, |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 | 200 |
| 200 scoped_ptr<LeakDetector> leak_detector_; | 201 scoped_ptr<LeakDetector> leak_detector_; |
| 201 bool needs_leak_detector_; | 202 bool needs_leak_detector_; |
| 202 | 203 |
| 203 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); | 204 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); |
| 204 }; | 205 }; |
| 205 | 206 |
| 206 } // namespace content | 207 } // namespace content |
| 207 | 208 |
| 208 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ | 209 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ |
| OLD | NEW |