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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 1840563002: Revert of media: Enable Unified Media Pipeline for MSE and EME on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months 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
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 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_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 v8::Local<v8::Context> context) override; 407 v8::Local<v8::Context> context) override;
408 void AddMessageToConsole(ConsoleMessageLevel level, 408 void AddMessageToConsole(ConsoleMessageLevel level,
409 const std::string& message) override; 409 const std::string& message) override;
410 bool IsUsingLoFi() const override; 410 bool IsUsingLoFi() const override;
411 bool IsPasting() const override; 411 bool IsPasting() const override;
412 412
413 // blink::WebFrameClient implementation: 413 // blink::WebFrameClient implementation:
414 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, 414 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame,
415 const blink::WebPluginParams& params) override; 415 const blink::WebPluginParams& params) override;
416 blink::WebMediaPlayer* createMediaPlayer( 416 blink::WebMediaPlayer* createMediaPlayer(
417 blink::WebMediaPlayer::LoadType load_type,
417 const blink::WebURL& url, 418 const blink::WebURL& url,
418 blink::WebMediaPlayerClient* client, 419 blink::WebMediaPlayerClient* client,
419 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, 420 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client,
420 blink::WebContentDecryptionModule* initial_cdm, 421 blink::WebContentDecryptionModule* initial_cdm,
421 const blink::WebString& sink_id, 422 const blink::WebString& sink_id,
422 blink::WebMediaSession* media_session) override; 423 blink::WebMediaSession* media_session) override;
423 blink::WebMediaSession* createMediaSession() override; 424 blink::WebMediaSession* createMediaSession() override;
424 blink::WebApplicationCacheHost* createApplicationCacheHost( 425 blink::WebApplicationCacheHost* createApplicationCacheHost(
425 blink::WebApplicationCacheHostClient* client) override; 426 blink::WebApplicationCacheHostClient* client) override;
426 blink::WebWorkerContentSettingsClientProxy* 427 blink::WebWorkerContentSettingsClientProxy*
(...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after
1203 #endif 1204 #endif
1204 1205
1205 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1206 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1206 1207
1207 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1208 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1208 }; 1209 };
1209 1210
1210 } // namespace content 1211 } // namespace content
1211 1212
1212 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1213 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698