Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: content/shell/renderer/layout_test/blink_test_runner.h

Issue 1543673002: MediaRecorder: make MediaRecorderHandler a MediaStreamObserver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 const std::string& data)>& callback) override; 131 const std::string& data)>& callback) override;
132 void SetPermission(const std::string& name, 132 void SetPermission(const std::string& name,
133 const std::string& value, 133 const std::string& value,
134 const GURL& origin, 134 const GURL& origin,
135 const GURL& embedding_origin) override; 135 const GURL& embedding_origin) override;
136 void ResetPermissions() override; 136 void ResetPermissions() override;
137 bool AddMediaStreamVideoSourceAndTrack( 137 bool AddMediaStreamVideoSourceAndTrack(
138 blink::WebMediaStream* stream) override; 138 blink::WebMediaStream* stream) override;
139 bool AddMediaStreamAudioSourceAndTrack( 139 bool AddMediaStreamAudioSourceAndTrack(
140 blink::WebMediaStream* stream) override; 140 blink::WebMediaStream* stream) override;
141 void AddMediaStream(blink::WebMediaStream* stream) override;
141 cc::SharedBitmapManager* GetSharedBitmapManager() override; 142 cc::SharedBitmapManager* GetSharedBitmapManager() override;
142 void DispatchBeforeInstallPromptEvent( 143 void DispatchBeforeInstallPromptEvent(
143 int request_id, 144 int request_id,
144 const std::vector<std::string>& event_platforms, 145 const std::vector<std::string>& event_platforms,
145 const base::Callback<void(bool)>& callback) override; 146 const base::Callback<void(bool)>& callback) override;
146 void ResolveBeforeInstallPromptPromise( 147 void ResolveBeforeInstallPromptPromise(
147 int request_id, 148 int request_id,
148 const std::string& platform) override; 149 const std::string& platform) override;
149 blink::WebPlugin* CreatePluginPlaceholder( 150 blink::WebPlugin* CreatePluginPlaceholder(
150 blink::WebLocalFrame* frame, 151 blink::WebLocalFrame* frame,
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 199
199 scoped_ptr<LeakDetector> leak_detector_; 200 scoped_ptr<LeakDetector> leak_detector_;
200 bool needs_leak_detector_; 201 bool needs_leak_detector_;
201 202
202 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); 203 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner);
203 }; 204 };
204 205
205 } // namespace content 206 } // namespace content
206 207
207 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ 208 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698