| OLD | NEW | 
|---|
| 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 "media/blink/webmediaplayer_impl.h" | 5 #include "media/blink/webmediaplayer_impl.h" | 
| 6 | 6 | 
| 7 #include <algorithm> | 7 #include <algorithm> | 
| 8 #include <cmath> | 8 #include <cmath> | 
| 9 #include <limits> | 9 #include <limits> | 
| 10 #include <string> | 10 #include <string> | 
| 11 #include <utility> | 11 #include <utility> | 
| 12 | 12 | 
| 13 #include "base/bind.h" | 13 #include "base/bind.h" | 
| 14 #include "base/bind_helpers.h" | 14 #include "base/bind_helpers.h" | 
| 15 #include "base/callback.h" | 15 #include "base/callback.h" | 
| 16 #include "base/callback_helpers.h" | 16 #include "base/callback_helpers.h" | 
| 17 #include "base/command_line.h" | 17 #include "base/command_line.h" | 
| 18 #include "base/debug/alias.h" | 18 #include "base/debug/alias.h" | 
| 19 #include "base/debug/crash_logging.h" | 19 #include "base/debug/crash_logging.h" | 
| 20 #include "base/location.h" | 20 #include "base/location.h" | 
| 21 #include "base/metrics/histogram.h" | 21 #include "base/metrics/histogram_macros.h" | 
| 22 #include "base/single_thread_task_runner.h" | 22 #include "base/single_thread_task_runner.h" | 
| 23 #include "base/strings/string_number_conversions.h" | 23 #include "base/strings/string_number_conversions.h" | 
| 24 #include "base/task_runner_util.h" | 24 #include "base/task_runner_util.h" | 
| 25 #include "base/threading/thread_task_runner_handle.h" | 25 #include "base/threading/thread_task_runner_handle.h" | 
| 26 #include "base/trace_event/trace_event.h" | 26 #include "base/trace_event/trace_event.h" | 
| 27 #include "build/build_config.h" | 27 #include "build/build_config.h" | 
| 28 #include "cc/blink/web_layer_impl.h" | 28 #include "cc/blink/web_layer_impl.h" | 
| 29 #include "cc/layers/video_layer.h" | 29 #include "cc/layers/video_layer.h" | 
| 30 #include "media/audio/null_audio_sink.h" | 30 #include "media/audio/null_audio_sink.h" | 
| 31 #include "media/base/bind_to_current_loop.h" | 31 #include "media/base/bind_to_current_loop.h" | 
| (...skipping 1760 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1792       pipeline_metadata_.natural_size, | 1792       pipeline_metadata_.natural_size, | 
| 1793       base::Bind(&GetCurrentTimeInternal, this))); | 1793       base::Bind(&GetCurrentTimeInternal, this))); | 
| 1794   watch_time_reporter_->OnVolumeChange(volume_); | 1794   watch_time_reporter_->OnVolumeChange(volume_); | 
| 1795   if (delegate_ && delegate_->IsHidden()) | 1795   if (delegate_ && delegate_->IsHidden()) | 
| 1796     watch_time_reporter_->OnHidden(); | 1796     watch_time_reporter_->OnHidden(); | 
| 1797   else | 1797   else | 
| 1798     watch_time_reporter_->OnShown(); | 1798     watch_time_reporter_->OnShown(); | 
| 1799 } | 1799 } | 
| 1800 | 1800 | 
| 1801 }  // namespace media | 1801 }  // namespace media | 
| OLD | NEW | 
|---|