summaryrefslogtreecommitdiffstats
path: root/chrome/browser/metrics/gpu_metrics_provider.h
blob: 2c3a3f010aaf5b0ac83180d2e5e965c1f1238223 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_METRICS_GPU_METRICS_PROVIDER_H_
#define CHROME_BROWSER_METRICS_GPU_METRICS_PROVIDER_H_

#include "base/basictypes.h"
#include "components/metrics/metrics_provider.h"
#include "ui/gfx/size.h"

// GPUMetricsProvider provides GPU-related metrics.
class GPUMetricsProvider : public metrics::MetricsProvider {
 public:
  GPUMetricsProvider();
  virtual ~GPUMetricsProvider();

  // metrics::MetricsProvider:
  virtual void ProvideSystemProfileMetrics(
      metrics::SystemProfileProto* system_profile_proto) OVERRIDE;

 protected:
  // Exposed for the sake of mocking in test code.

  // Returns the screen size for the primary monitor.
  virtual gfx::Size GetScreenSize() const;

  // Returns the device scale factor for the primary monitor.
  virtual float GetScreenDeviceScaleFactor() const;

  // Returns the number of monitors the user is using.
  virtual int GetScreenCount() const;

 private:
  DISALLOW_COPY_AND_ASSIGN(GPUMetricsProvider);
};

#endif  // CHROME_BROWSER_METRICS_GPU_METRICS_PROVIDER_H_