| 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 #include "content/renderer/pepper/pepper_plugin_instance_impl.h" | 5 #include "content/renderer/pepper/pepper_plugin_instance_impl.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/bit_cast.h" |
| 10 #include "base/callback_helpers.h" | 11 #include "base/callback_helpers.h" |
| 11 #include "base/location.h" | 12 #include "base/location.h" |
| 12 #include "base/logging.h" | 13 #include "base/logging.h" |
| 13 #include "base/metrics/histogram.h" | 14 #include "base/metrics/histogram.h" |
| 14 #include "base/single_thread_task_runner.h" | 15 #include "base/single_thread_task_runner.h" |
| 15 #include "base/stl_util.h" | 16 #include "base/stl_util.h" |
| 16 #include "base/strings/string_number_conversions.h" | 17 #include "base/strings/string_number_conversions.h" |
| 17 #include "base/strings/stringprintf.h" | 18 #include "base/strings/stringprintf.h" |
| 18 #include "base/strings/utf_offset_string_conversions.h" | 19 #include "base/strings/utf_offset_string_conversions.h" |
| 19 #include "base/strings/utf_string_conversions.h" | 20 #include "base/strings/utf_string_conversions.h" |
| (...skipping 3257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3277 | 3278 |
| 3278 void PepperPluginInstanceImpl::RecordFlashJavaScriptUse() { | 3279 void PepperPluginInstanceImpl::RecordFlashJavaScriptUse() { |
| 3279 if (initialized_ && !javascript_used_ && is_flash_plugin_) { | 3280 if (initialized_ && !javascript_used_ && is_flash_plugin_) { |
| 3280 javascript_used_ = true; | 3281 javascript_used_ = true; |
| 3281 RenderThread::Get()->RecordAction( | 3282 RenderThread::Get()->RecordAction( |
| 3282 base::UserMetricsAction("Flash.JavaScriptUsed")); | 3283 base::UserMetricsAction("Flash.JavaScriptUsed")); |
| 3283 } | 3284 } |
| 3284 } | 3285 } |
| 3285 | 3286 |
| 3286 } // namespace content | 3287 } // namespace content |
| OLD | NEW |