| Index: blimp/client/core/contents/blimp_contents_impl.cc
|
| diff --git a/blimp/client/core/contents/blimp_contents_impl.cc b/blimp/client/core/contents/blimp_contents_impl.cc
|
| index a4c587ee12cfd66fa40352377e30d9ce1fa1024a..71019de418d8643fb7f37f271167b53d2dcfa461 100644
|
| --- a/blimp/client/core/contents/blimp_contents_impl.cc
|
| +++ b/blimp/client/core/contents/blimp_contents_impl.cc
|
| @@ -5,6 +5,7 @@
|
| #include "blimp/client/core/contents/blimp_contents_impl.h"
|
|
|
| #include "base/memory/ptr_util.h"
|
| +#include "base/metrics/histogram_macros.h"
|
| #include "base/supports_user_data.h"
|
| #include "blimp/client/core/contents/blimp_contents_view.h"
|
| #include "blimp/client/core/contents/tab_control_feature.h"
|
| @@ -90,10 +91,12 @@ gfx::NativeView BlimpContentsImpl::GetNativeView() {
|
|
|
| void BlimpContentsImpl::Show() {
|
| compositor_manager_.SetVisible(true);
|
| + UMA_HISTOGRAM_BOOLEAN("Blimp.Tab.Visible", true);
|
| }
|
|
|
| void BlimpContentsImpl::Hide() {
|
| compositor_manager_.SetVisible(false);
|
| + UMA_HISTOGRAM_BOOLEAN("Blimp.Tab.Visible", false);
|
| }
|
|
|
| bool BlimpContentsImpl::HasObserver(BlimpContentsObserver* observer) {
|
|
|