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

Side by Side Diff: content/renderer/media/android/webmediaplayer_android.cc

Issue 68683009: Rewrite include paths for Blink public/ headers that have moved (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 1 month 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 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 #include "content/renderer/media/android/webmediaplayer_android.h" 5 #include "content/renderer/media/android/webmediaplayer_android.h"
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 10 matching lines...) Expand all
21 #include "content/renderer/media/webmediaplayer_delegate.h" 21 #include "content/renderer/media/webmediaplayer_delegate.h"
22 #include "content/renderer/media/webmediaplayer_util.h" 22 #include "content/renderer/media/webmediaplayer_util.h"
23 #include "content/renderer/render_thread_impl.h" 23 #include "content/renderer/render_thread_impl.h"
24 #include "gpu/GLES2/gl2extchromium.h" 24 #include "gpu/GLES2/gl2extchromium.h"
25 #include "grit/content_resources.h" 25 #include "grit/content_resources.h"
26 #include "media/base/android/media_player_android.h" 26 #include "media/base/android/media_player_android.h"
27 #include "media/base/bind_to_loop.h" 27 #include "media/base/bind_to_loop.h"
28 #include "media/base/media_switches.h" 28 #include "media/base/media_switches.h"
29 #include "media/base/video_frame.h" 29 #include "media/base/video_frame.h"
30 #include "net/base/mime_util.h" 30 #include "net/base/mime_util.h"
31 #include "third_party/WebKit/public/platform/WebMediaPlayerClient.h"
31 #include "third_party/WebKit/public/platform/WebString.h" 32 #include "third_party/WebKit/public/platform/WebString.h"
32 #include "third_party/WebKit/public/web/WebDocument.h" 33 #include "third_party/WebKit/public/web/WebDocument.h"
33 #include "third_party/WebKit/public/web/WebFrame.h" 34 #include "third_party/WebKit/public/web/WebFrame.h"
34 #include "third_party/WebKit/public/web/WebMediaPlayerClient.h"
35 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" 35 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
36 #include "third_party/WebKit/public/web/WebView.h" 36 #include "third_party/WebKit/public/web/WebView.h"
37 #include "third_party/skia/include/core/SkBitmap.h" 37 #include "third_party/skia/include/core/SkBitmap.h"
38 #include "third_party/skia/include/core/SkCanvas.h" 38 #include "third_party/skia/include/core/SkCanvas.h"
39 #include "third_party/skia/include/core/SkPaint.h" 39 #include "third_party/skia/include/core/SkPaint.h"
40 #include "ui/gfx/image/image.h" 40 #include "ui/gfx/image/image.h"
41 #include "webkit/renderer/compositor_bindings/web_layer_impl.h" 41 #include "webkit/renderer/compositor_bindings/web_layer_impl.h"
42 42
43 #if defined(GOOGLE_TV) 43 #if defined(GOOGLE_TV)
44 #include "content/renderer/media/media_stream_audio_renderer.h" 44 #include "content/renderer/media/media_stream_audio_renderer.h"
(...skipping 1387 matching lines...) Expand 10 before | Expand all | Expand 10 after
1432 1432
1433 void WebMediaPlayerAndroid::exitFullscreen() { 1433 void WebMediaPlayerAndroid::exitFullscreen() {
1434 manager_->ExitFullscreen(player_id_); 1434 manager_->ExitFullscreen(player_id_);
1435 } 1435 }
1436 1436
1437 bool WebMediaPlayerAndroid::canEnterFullscreen() const { 1437 bool WebMediaPlayerAndroid::canEnterFullscreen() const {
1438 return manager_->CanEnterFullscreen(frame_); 1438 return manager_->CanEnterFullscreen(frame_);
1439 } 1439 }
1440 1440
1441 } // namespace content 1441 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698