gpu_data_manager_impl_private.cc revision 6e8cce623b6e4fe0c9e4af605d675dd9d0338c38
1a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)// Copyright (c) 2013 The Chromium Authors. All rights reserved.
2a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)// Use of this source code is governed by a BSD-style license that can be
3a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)// found in the LICENSE file.
4a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
5a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "content/browser/gpu/gpu_data_manager_impl_private.h"
6a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
7a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "base/bind.h"
8a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "base/bind_helpers.h"
9a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "base/command_line.h"
10a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "base/debug/trace_event.h"
11a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "base/metrics/field_trial.h"
12a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "base/metrics/histogram.h"
133240926e260ce088908e02ac07a6cf7b0c0cbf44Ben Murdoch#include "base/metrics/sparse_histogram.h"
14a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "base/strings/string_number_conversions.h"
15868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)#include "base/strings/stringprintf.h"
16a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "base/sys_info.h"
17a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "base/version.h"
1890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#include "cc/base/switches.h"
19a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "content/browser/gpu/gpu_process_host.h"
20a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "content/common/gpu/gpu_messages.h"
21a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "content/public/browser/browser_thread.h"
22a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "content/public/browser/gpu_data_manager_observer.h"
23a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "content/public/common/content_client.h"
24a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "content/public/common/content_constants.h"
25a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "content/public/common/content_switches.h"
26116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch#include "content/public/common/web_preferences.h"
27a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "gpu/command_buffer/service/gpu_switches.h"
2890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#include "gpu/config/gpu_control_list_jsons.h"
29868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)#include "gpu/config/gpu_driver_bug_workaround_type.h"
3090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#include "gpu/config/gpu_feature_type.h"
3190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#include "gpu/config/gpu_info_collector.h"
3290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#include "gpu/config/gpu_util.h"
33a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "ui/base/ui_base_switches.h"
34a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "ui/gl/gl_implementation.h"
35a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "ui/gl/gl_switches.h"
36a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "ui/gl/gpu_switching_manager.h"
37a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
3890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#if defined(OS_MACOSX)
3990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#include <ApplicationServices/ApplicationServices.h>
4090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#endif  // OS_MACOSX
41a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#if defined(OS_WIN)
42a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#include "base/win/windows_version.h"
4390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#endif  // OS_WIN
4490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#if defined(OS_ANDROID)
4590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#include "ui/gfx/android/device_display_info.h"
4690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#endif  // OS_ANDROID
47a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
48a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)namespace content {
4990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
50a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)namespace {
51a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
5290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)enum GpuFeatureStatus {
5390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    kGpuFeatureEnabled = 0,
5490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    kGpuFeatureBlacklisted = 1,
5590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    kGpuFeatureDisabled = 2,  // disabled by user but not blacklisted
5690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    kGpuFeatureNumStatus
5790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)};
5890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
5990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#if defined(OS_WIN)
6090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
6190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)enum WinSubVersion {
6290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  kWinOthers = 0,
6390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  kWinXP,
6490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  kWinVista,
6590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  kWin7,
667dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch  kWin8,
6790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  kNumWinSubVersions
6890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)};
6990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
7090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)int GetGpuBlacklistHistogramValueWin(GpuFeatureStatus status) {
7190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  static WinSubVersion sub_version = kNumWinSubVersions;
7290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  if (sub_version == kNumWinSubVersions) {
7390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    sub_version = kWinOthers;
7490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    std::string version_str = base::SysInfo::OperatingSystemVersion();
7590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    size_t pos = version_str.find_first_not_of("0123456789.");
7690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    if (pos != std::string::npos)
7790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      version_str = version_str.substr(0, pos);
7890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    Version os_version(version_str);
7990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    if (os_version.IsValid() && os_version.components().size() >= 2) {
8090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      const std::vector<uint16>& version_numbers = os_version.components();
8190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      if (version_numbers[0] == 5)
8290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)        sub_version = kWinXP;
8390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      else if (version_numbers[0] == 6 && version_numbers[1] == 0)
8490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)        sub_version = kWinVista;
8590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      else if (version_numbers[0] == 6 && version_numbers[1] == 1)
8690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)        sub_version = kWin7;
877dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch      else if (version_numbers[0] == 6 && version_numbers[1] == 2)
887dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch        sub_version = kWin8;
8990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    }
9090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  }
9190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  int entry_index = static_cast<int>(sub_version) * kGpuFeatureNumStatus;
9290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  switch (status) {
9390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    case kGpuFeatureEnabled:
9490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      break;
9590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    case kGpuFeatureBlacklisted:
9690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      entry_index++;
9790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      break;
9890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    case kGpuFeatureDisabled:
9990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      entry_index += 2;
10090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      break;
10190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  }
10290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  return entry_index;
10390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)}
10490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#endif  // OS_WIN
10590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
1063240926e260ce088908e02ac07a6cf7b0c0cbf44Ben Murdoch// Send UMA histograms about the enabled features and GPU properties.
1073240926e260ce088908e02ac07a6cf7b0c0cbf44Ben Murdochvoid UpdateStats(const gpu::GPUInfo& gpu_info,
1083240926e260ce088908e02ac07a6cf7b0c0cbf44Ben Murdoch                 const gpu::GpuBlacklist* blacklist,
10990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)                 const std::set<int>& blacklisted_features) {
11090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  uint32 max_entry_id = blacklist->max_entry_id();
11190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  if (max_entry_id == 0) {
11290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    // GPU Blacklist was not loaded.  No need to go further.
11390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    return;
11490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  }
11590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
1166e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)  const base::CommandLine& command_line =
1176e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)      *base::CommandLine::ForCurrentProcess();
11890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  bool disabled = false;
1197dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch
1207dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch  // Use entry 0 to capture the total number of times that data
1217dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch  // was recorded in this histogram in order to have a convenient
1227dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch  // denominator to compute blacklist percentages for the rest of the
1237dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch  // entries.
1247dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch  UMA_HISTOGRAM_ENUMERATION("GPU.BlacklistTestResultsPerEntry",
1257dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch      0, max_entry_id + 1);
1267dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch
1277dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch  if (blacklisted_features.size() != 0) {
12890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    std::vector<uint32> flag_entries;
12990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    blacklist->GetDecisionEntries(&flag_entries, disabled);
13090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    DCHECK_GT(flag_entries.size(), 0u);
13190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    for (size_t i = 0; i < flag_entries.size(); ++i) {
13290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      UMA_HISTOGRAM_ENUMERATION("GPU.BlacklistTestResultsPerEntry",
13390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)          flag_entries[i], max_entry_id + 1);
13490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    }
13590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  }
13690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
13790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  // This counts how many users are affected by a disabled entry - this allows
13890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  // us to understand the impact of an entry before enable it.
13990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  std::vector<uint32> flag_disabled_entries;
14090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  disabled = true;
14190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  blacklist->GetDecisionEntries(&flag_disabled_entries, disabled);
1425f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)  for (uint32 disabled_entry : flag_disabled_entries) {
14390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    UMA_HISTOGRAM_ENUMERATION("GPU.BlacklistTestResultsPerDisabledEntry",
1445f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)        disabled_entry, max_entry_id + 1);
14590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  }
14690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
14790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  const gpu::GpuFeatureType kGpuFeatures[] = {
14890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      gpu::GPU_FEATURE_TYPE_ACCELERATED_2D_CANVAS,
1490529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      gpu::GPU_FEATURE_TYPE_GPU_COMPOSITING, gpu::GPU_FEATURE_TYPE_WEBGL};
15090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  const std::string kGpuBlacklistFeatureHistogramNames[] = {
15190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      "GPU.BlacklistFeatureTestResults.Accelerated2dCanvas",
1520529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      "GPU.BlacklistFeatureTestResults.GpuCompositing",
1530529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      "GPU.BlacklistFeatureTestResults.Webgl", };
15490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  const bool kGpuFeatureUserFlags[] = {
15590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      command_line.HasSwitch(switches::kDisableAccelerated2dCanvas),
1560529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      command_line.HasSwitch(switches::kDisableGpu),
1570529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      command_line.HasSwitch(switches::kDisableExperimentalWebGL), };
15890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#if defined(OS_WIN)
15990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  const std::string kGpuBlacklistFeatureHistogramNamesWin[] = {
16090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      "GPU.BlacklistFeatureTestResultsWindows.Accelerated2dCanvas",
1610529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      "GPU.BlacklistFeatureTestResultsWindows.GpuCompositing",
1620529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      "GPU.BlacklistFeatureTestResultsWindows.Webgl", };
16390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#endif
16490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  const size_t kNumFeatures =
16590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      sizeof(kGpuFeatures) / sizeof(gpu::GpuFeatureType);
16690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  for (size_t i = 0; i < kNumFeatures; ++i) {
16790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    // We can't use UMA_HISTOGRAM_ENUMERATION here because the same name is
16890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    // expected if the macro is used within a loop.
16990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    GpuFeatureStatus value = kGpuFeatureEnabled;
17090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    if (blacklisted_features.count(kGpuFeatures[i]))
17190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      value = kGpuFeatureBlacklisted;
17290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    else if (kGpuFeatureUserFlags[i])
17390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      value = kGpuFeatureDisabled;
17490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    base::HistogramBase* histogram_pointer = base::LinearHistogram::FactoryGet(
17590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)        kGpuBlacklistFeatureHistogramNames[i],
17690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)        1, kGpuFeatureNumStatus, kGpuFeatureNumStatus + 1,
17790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)        base::HistogramBase::kUmaTargetedHistogramFlag);
17890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    histogram_pointer->Add(value);
17990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#if defined(OS_WIN)
18090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    histogram_pointer = base::LinearHistogram::FactoryGet(
18190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)        kGpuBlacklistFeatureHistogramNamesWin[i],
18290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)        1, kNumWinSubVersions * kGpuFeatureNumStatus,
18390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)        kNumWinSubVersions * kGpuFeatureNumStatus + 1,
18490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)        base::HistogramBase::kUmaTargetedHistogramFlag);
18590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    histogram_pointer->Add(GetGpuBlacklistHistogramValueWin(value));
18690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)#endif
18790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  }
1883240926e260ce088908e02ac07a6cf7b0c0cbf44Ben Murdoch
1893240926e260ce088908e02ac07a6cf7b0c0cbf44Ben Murdoch  UMA_HISTOGRAM_SPARSE_SLOWLY("GPU.GLResetNotificationStrategy",
1903240926e260ce088908e02ac07a6cf7b0c0cbf44Ben Murdoch      gpu_info.gl_reset_notification_strategy);
19190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)}
19290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
193a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)// Combine the integers into a string, seperated by ','.
194a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)std::string IntSetToString(const std::set<int>& list) {
195a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  std::string rt;
196a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  for (std::set<int>::const_iterator it = list.begin();
197a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)       it != list.end(); ++it) {
198a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    if (!rt.empty())
199a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      rt += ",";
200a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    rt += base::IntToString(*it);
201a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
202a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  return rt;
203a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
204a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
205a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#if defined(OS_MACOSX)
206a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void DisplayReconfigCallback(CGDirectDisplayID display,
207a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                             CGDisplayChangeSummaryFlags flags,
208a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                             void* gpu_data_manager) {
209424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)  if (flags == kCGDisplayBeginConfigurationFlag)
210868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)    return; // This call contains no information about the display change
211868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
212868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  GpuDataManagerImpl* manager =
213868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)      reinterpret_cast<GpuDataManagerImpl*>(gpu_data_manager);
214868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  DCHECK(manager);
215868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
2160529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  // Display change.
2170529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  bool display_changed = false;
218868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  uint32_t displayCount;
219868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  CGGetActiveDisplayList(0, NULL, &displayCount);
220868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  if (displayCount != manager->GetDisplayCount()) {
221868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)    manager->SetDisplayCount(displayCount);
2220529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    display_changed = true;
2230529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  }
2240529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch
2250529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  // Gpu change.
2260529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  bool gpu_changed = false;
2270529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  if (flags & kCGDisplayAddFlag) {
2280529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    uint32 vendor_id, device_id;
2290529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    if (gpu::CollectGpuID(&vendor_id, &device_id) == gpu::kGpuIDSuccess) {
2300529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      gpu_changed = manager->UpdateActiveGpu(vendor_id, device_id);
2310529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    }
232a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
233868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
2340529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  if (display_changed || gpu_changed)
235868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)    manager->HandleGpuSwitch();
236a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
237a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#endif  // OS_MACOSX
238a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
239a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)// Block all domains' use of 3D APIs for this many milliseconds if
240a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)// approaching a threshold where system stability might be compromised.
241a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)const int64 kBlockAllDomainsMs = 10000;
242a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)const int kNumResetsWithinDuration = 1;
243a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
244a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)// Enums for UMA histograms.
245a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)enum BlockStatusHistogram {
246a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  BLOCK_STATUS_NOT_BLOCKED,
247a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  BLOCK_STATUS_SPECIFIC_DOMAIN_BLOCKED,
248a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  BLOCK_STATUS_ALL_DOMAINS_BLOCKED,
249a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  BLOCK_STATUS_MAX
250a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)};
251a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
252a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}  // namespace anonymous
253a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
254a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::InitializeForTesting(
255a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    const std::string& gpu_blacklist_json,
25690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    const gpu::GPUInfo& gpu_info) {
257a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // This function is for testing only, so disable histograms.
258a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  update_histograms_ = false;
259a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
2604e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)  // Prevent all further initialization.
2614e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)  finalized_ = true;
2624e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)
263f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)  InitializeImpl(gpu_blacklist_json, std::string(), gpu_info);
264a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
265a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
266a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)bool GpuDataManagerImplPrivate::IsFeatureBlacklisted(int feature) const {
2673551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)#if defined(OS_CHROMEOS)
2683551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)  if (feature == gpu::GPU_FEATURE_TYPE_PANEL_FITTING &&
2696e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)      base::CommandLine::ForCurrentProcess()->HasSwitch(
2703551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)          switches::kDisablePanelFitting)) {
2713551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)    return true;
2723551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)  }
2733551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)#endif  // OS_CHROMEOS
274a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (use_swiftshader_) {
275a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    // Skia's software rendering is probably more efficient than going through
276a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    // software emulation of the GPU, so use that.
27790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    if (feature == gpu::GPU_FEATURE_TYPE_ACCELERATED_2D_CANVAS)
278a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      return true;
279a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return false;
280a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
281a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
282a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  return (blacklisted_features_.count(feature) == 1);
283a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
284a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
285424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)bool GpuDataManagerImplPrivate::IsDriverBugWorkaroundActive(int feature) const {
286424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)  return (gpu_driver_bugs_.count(feature) == 1);
287424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)}
288424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)
289a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)size_t GpuDataManagerImplPrivate::GetBlacklistedFeatureCount() const {
290a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (use_swiftshader_)
291a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return 1;
292a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  return blacklisted_features_.size();
293a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
294a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
295868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)void GpuDataManagerImplPrivate::SetDisplayCount(unsigned int display_count) {
296868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  display_count_ = display_count;
297868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)}
298868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
299868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)unsigned int GpuDataManagerImplPrivate::GetDisplayCount() const {
300868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  return display_count_;
301868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)}
302868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
30390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)gpu::GPUInfo GpuDataManagerImplPrivate::GetGPUInfo() const {
304a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  return gpu_info_;
305a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
306a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
307a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::GetGpuProcessHandles(
308a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    const GpuDataManager::GetGpuProcessHandlesCallback& callback) const {
309a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  GpuProcessHost::GetProcessHandles(callback);
310a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
311a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
312a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)bool GpuDataManagerImplPrivate::GpuAccessAllowed(
313a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    std::string* reason) const {
314a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (use_swiftshader_)
315a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return true;
316a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
317eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch  if (!gpu_process_accessible_) {
318a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    if (reason) {
319a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      *reason = "GPU process launch failed.";
320a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    }
321a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return false;
322a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
323a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
324a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (card_blacklisted_) {
325a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    if (reason) {
326a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      *reason = "GPU access is disabled ";
3276e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)      base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
328a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      if (command_line->HasSwitch(switches::kDisableGpu))
329a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)        *reason += "through commandline switch --disable-gpu.";
330a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      else
331a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)        *reason += "in chrome://settings.";
332a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    }
333a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return false;
334a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
335a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
336a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // We only need to block GPU process if more features are disallowed other
337a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // than those in the preliminary gpu feature flags because the latter work
338a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // through renderer commandline switches.
339a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  std::set<int> features = preliminary_blacklisted_features_;
34090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  gpu::MergeFeatureSets(&features, blacklisted_features_);
341a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (features.size() > preliminary_blacklisted_features_.size()) {
342a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    if (reason) {
343a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      *reason = "Features are disabled upon full but not preliminary GPU info.";
344a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    }
345a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return false;
346a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
347a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
34890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  if (blacklisted_features_.size() == gpu::NUMBER_OF_GPU_FEATURE_TYPES) {
349a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    // On Linux, we use cached GL strings to make blacklist decsions at browser
350a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    // startup time. We need to launch the GPU process to validate these
351a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    // strings even if all features are blacklisted. If all GPU features are
352a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    // disabled, the GPU process will only initialize GL bindings, create a GL
353a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    // context, and collect full GPU info.
354a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#if !defined(OS_LINUX)
355a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    if (reason) {
356a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      *reason = "All GPU features are blacklisted.";
357a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    }
358a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return false;
359a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#endif
360a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
361a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
362a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  return true;
363a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
364a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
365a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::RequestCompleteGpuInfoIfNeeded() {
366a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (complete_gpu_info_already_requested_ || gpu_info_.finalized)
367a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return;
368a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  complete_gpu_info_already_requested_ = true;
369a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
370a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  GpuProcessHost::SendOnIO(
371a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#if defined(OS_WIN)
372a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      GpuProcessHost::GPU_PROCESS_KIND_UNSANDBOXED,
373a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#else
374a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      GpuProcessHost::GPU_PROCESS_KIND_SANDBOXED,
375a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#endif
376a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      CAUSE_FOR_GPU_LAUNCH_GPUDATAMANAGER_REQUESTCOMPLETEGPUINFOIFNEEDED,
377a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      new GpuMsg_CollectGraphicsInfo());
378a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
379a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
380a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)bool GpuDataManagerImplPrivate::IsCompleteGpuInfoAvailable() const {
381a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  return gpu_info_.finalized;
382a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
383a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
384a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::RequestVideoMemoryUsageStatsUpdate() const {
385a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  GpuProcessHost::SendOnIO(
386a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      GpuProcessHost::GPU_PROCESS_KIND_SANDBOXED,
387a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      CAUSE_FOR_GPU_LAUNCH_NO_LAUNCH,
388a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      new GpuMsg_GetVideoMemoryUsageStats());
389a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
390a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
391a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)bool GpuDataManagerImplPrivate::ShouldUseSwiftShader() const {
392a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  return use_swiftshader_;
393a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
394a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
395a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::RegisterSwiftShaderPath(
396a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    const base::FilePath& path) {
397a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  swiftshader_path_ = path;
398a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  EnableSwiftShaderIfNecessary();
399a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
400a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
401a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::AddObserver(GpuDataManagerObserver* observer) {
402a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  GpuDataManagerImpl::UnlockedSession session(owner_);
403a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  observer_list_->AddObserver(observer);
404a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
405a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
406a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::RemoveObserver(
407a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    GpuDataManagerObserver* observer) {
408a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  GpuDataManagerImpl::UnlockedSession session(owner_);
409a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  observer_list_->RemoveObserver(observer);
410a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
411a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
412a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::UnblockDomainFrom3DAPIs(const GURL& url) {
413a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // This method must do two things:
414a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  //
415a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  //  1. If the specific domain is blocked, then unblock it.
416a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  //
417a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  //  2. Reset our notion of how many GPU resets have occurred recently.
418a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  //     This is necessary even if the specific domain was blocked.
419a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  //     Otherwise, if we call Are3DAPIsBlocked with the same domain right
420a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  //     after unblocking it, it will probably still be blocked because of
421a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  //     the recent GPU reset caused by that domain.
422a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  //
423a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // These policies could be refined, but at a certain point the behavior
424a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // will become difficult to explain.
425a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  std::string domain = GetDomainFromURL(url);
426a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
427a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  blocked_domains_.erase(domain);
428a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  timestamps_of_gpu_resets_.clear();
429a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
430a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
431a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::DisableGpuWatchdog() {
432a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  GpuProcessHost::SendOnIO(
433a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      GpuProcessHost::GPU_PROCESS_KIND_SANDBOXED,
434a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      CAUSE_FOR_GPU_LAUNCH_NO_LAUNCH,
435a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      new GpuMsg_DisableWatchdog);
436a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
437a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
438a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::SetGLStrings(const std::string& gl_vendor,
439a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                                             const std::string& gl_renderer,
440a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                                             const std::string& gl_version) {
441a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (gl_vendor.empty() && gl_renderer.empty() && gl_version.empty())
442a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return;
443a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
444a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // If GPUInfo already got GL strings, do nothing.  This is for the rare
445a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // situation where GPU process collected GL strings before this call.
446a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (!gpu_info_.gl_vendor.empty() ||
447a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      !gpu_info_.gl_renderer.empty() ||
448010d83a9304c5a91596085d917d248abff47903aTorne (Richard Coles)      !gpu_info_.gl_version.empty())
449a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return;
450a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
45190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  gpu::GPUInfo gpu_info = gpu_info_;
452a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
453a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  gpu_info.gl_vendor = gl_vendor;
454a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  gpu_info.gl_renderer = gl_renderer;
455010d83a9304c5a91596085d917d248abff47903aTorne (Richard Coles)  gpu_info.gl_version = gl_version;
456a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
45790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  gpu::CollectDriverInfoGL(&gpu_info);
458a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
459a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  UpdateGpuInfo(gpu_info);
460a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  UpdateGpuSwitchingManager(gpu_info);
461a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  UpdatePreliminaryBlacklistedFeatures();
462a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
463a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
464a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::GetGLStrings(std::string* gl_vendor,
465a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                                             std::string* gl_renderer,
466a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                                             std::string* gl_version) {
467a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  DCHECK(gl_vendor && gl_renderer && gl_version);
468a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
469a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  *gl_vendor = gpu_info_.gl_vendor;
470a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  *gl_renderer = gpu_info_.gl_renderer;
471010d83a9304c5a91596085d917d248abff47903aTorne (Richard Coles)  *gl_version = gpu_info_.gl_version;
472a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
473a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
474a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::Initialize() {
475a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  TRACE_EVENT0("startup", "GpuDataManagerImpl::Initialize");
4764e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)  if (finalized_) {
477f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)    DVLOG(0) << "GpuDataManagerImpl marked as finalized; skipping Initialize";
4784e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    return;
4794e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)  }
4804e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)
4816e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)  const base::CommandLine* command_line =
4826e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)      base::CommandLine::ForCurrentProcess();
4834e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)  if (command_line->HasSwitch(switches::kSkipGpuDataLoading))
484a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return;
485a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
48690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  gpu::GPUInfo gpu_info;
4874e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)  if (command_line->GetSwitchValueASCII(
4884e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)          switches::kUseGL) == gfx::kGLImplementationOSMesaName) {
4894e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    // If using the OSMesa GL implementation, use fake vendor and device ids to
4904e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    // make sure it never gets blacklisted. This is better than simply
4914e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    // cancelling GPUInfo gathering as it allows us to proceed with loading the
4924e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    // blacklist below which may have non-device specific entries we want to
4934e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    // apply anyways (e.g., OS version blacklisting).
4944e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    gpu_info.gpu.vendor_id = 0xffff;
4954e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    gpu_info.gpu.device_id = 0xffff;
4964e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)
4974e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    // Also declare the driver_vendor to be osmesa to be able to specify
4984e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    // exceptions based on driver_vendor==osmesa for some blacklist rules.
4994e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    gpu_info.driver_vendor = gfx::kGLImplementationOSMesaName;
5004e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)  } else {
501a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    TRACE_EVENT0("startup",
502a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      "GpuDataManagerImpl::Initialize:CollectBasicGraphicsInfo");
50390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    gpu::CollectBasicGraphicsInfo(&gpu_info);
504a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
505a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#if defined(ARCH_CPU_X86_FAMILY)
506a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (!gpu_info.gpu.vendor_id || !gpu_info.gpu.device_id)
507a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    gpu_info.finalized = true;
508a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#endif
509a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
510a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  std::string gpu_blacklist_string;
511a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  std::string gpu_driver_bug_list_string;
5127dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch  if (!command_line->HasSwitch(switches::kIgnoreGpuBlacklist) &&
5137dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch      !command_line->HasSwitch(switches::kUseGpuInTests)) {
51490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    gpu_blacklist_string = gpu::kSoftwareRenderingListJson;
515a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
516a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (!command_line->HasSwitch(switches::kDisableGpuDriverBugWorkarounds)) {
51790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    gpu_driver_bug_list_string = gpu::kGpuDriverBugListJson;
518a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
519a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  InitializeImpl(gpu_blacklist_string,
520a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                 gpu_driver_bug_list_string,
521a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                 gpu_info);
522a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
523a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
524e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdochvoid GpuDataManagerImplPrivate::UpdateGpuInfoHelper() {
525a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  GetContentClient()->SetGpuInfo(gpu_info_);
526a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
527a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (gpu_blacklist_) {
528a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    std::set<int> features = gpu_blacklist_->MakeDecision(
52990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)        gpu::GpuControlList::kOsAny, std::string(), gpu_info_);
530a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    if (update_histograms_)
5313240926e260ce088908e02ac07a6cf7b0c0cbf44Ben Murdoch      UpdateStats(gpu_info_, gpu_blacklist_.get(), features);
532a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
533a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    UpdateBlacklistedFeatures(features);
534a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
535e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch  if (gpu_driver_bug_list_) {
536a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    gpu_driver_bugs_ = gpu_driver_bug_list_->MakeDecision(
53790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)        gpu::GpuControlList::kOsAny, std::string(), gpu_info_);
53890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  }
539e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch  gpu::GpuDriverBugList::AppendWorkaroundsFromCommandLine(
5406e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)      &gpu_driver_bugs_, *base::CommandLine::ForCurrentProcess());
541a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
542a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // We have to update GpuFeatureType before notify all the observers.
543a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  NotifyGpuInfoUpdate();
544a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
545a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
546e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdochvoid GpuDataManagerImplPrivate::UpdateGpuInfo(const gpu::GPUInfo& gpu_info) {
547e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch  // No further update of gpu_info if falling back to SwiftShader.
548e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch  if (use_swiftshader_)
549e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch    return;
550e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch
551e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch  gpu::MergeGPUInfo(&gpu_info_, gpu_info);
552e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch  complete_gpu_info_already_requested_ =
553e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch      complete_gpu_info_already_requested_ || gpu_info_.finalized;
554e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch
555e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch  UpdateGpuInfoHelper();
556e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch}
557e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch
558a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::UpdateVideoMemoryUsageStats(
559a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    const GPUVideoMemoryUsageStats& video_memory_usage_stats) {
560a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  GpuDataManagerImpl::UnlockedSession session(owner_);
561a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  observer_list_->Notify(&GpuDataManagerObserver::OnVideoMemoryUsageStatsUpdate,
562a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                         video_memory_usage_stats);
563a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
564a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
565a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::AppendRendererCommandLine(
5666e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    base::CommandLine* command_line) const {
567a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  DCHECK(command_line);
568a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
56990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  if (IsFeatureBlacklisted(gpu::GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE) &&
570a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      !command_line->HasSwitch(switches::kDisableAcceleratedVideoDecode))
571a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    command_line->AppendSwitch(switches::kDisableAcceleratedVideoDecode);
572a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)#if defined(ENABLE_WEBRTC)
573a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)  if (IsFeatureBlacklisted(gpu::GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE) &&
574a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      !command_line->HasSwitch(switches::kDisableWebRtcHWEncoding))
575a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)    command_line->AppendSwitch(switches::kDisableWebRtcHWEncoding);
576a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)#endif
577a36e5920737c6adbddd3e43b760e5de8431db6e0Torne (Richard Coles)
578a36e5920737c6adbddd3e43b760e5de8431db6e0Torne (Richard Coles)#if defined(USE_AURA)
5795d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  if (!CanUseGpuBrowserCompositor())
580a36e5920737c6adbddd3e43b760e5de8431db6e0Torne (Richard Coles)    command_line->AppendSwitch(switches::kDisableGpuCompositing);
581a36e5920737c6adbddd3e43b760e5de8431db6e0Torne (Richard Coles)#endif
582a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
583a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
584a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::AppendGpuCommandLine(
5856e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    base::CommandLine* command_line) const {
586a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  DCHECK(command_line);
587a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
588a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  std::string use_gl =
5896e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)      base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
5906e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)          switches::kUseGL);
591a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  base::FilePath swiftshader_path =
5926e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)      base::CommandLine::ForCurrentProcess()->GetSwitchValuePath(
593a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)          switches::kSwiftShaderPath);
5947dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch  if (gpu_driver_bugs_.find(gpu::DISABLE_D3D11) != gpu_driver_bugs_.end())
5957dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch    command_line->AppendSwitch(switches::kDisableD3D11);
596a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (use_swiftshader_) {
597a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    command_line->AppendSwitchASCII(switches::kUseGL, "swiftshader");
598a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    if (swiftshader_path.empty())
599a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      swiftshader_path = swiftshader_path_;
60090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  } else if ((IsFeatureBlacklisted(gpu::GPU_FEATURE_TYPE_WEBGL) ||
6010529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch              IsFeatureBlacklisted(gpu::GPU_FEATURE_TYPE_GPU_COMPOSITING) ||
60290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)              IsFeatureBlacklisted(
60390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)                  gpu::GPU_FEATURE_TYPE_ACCELERATED_2D_CANVAS)) &&
6040529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch             (use_gl == "any")) {
605a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    command_line->AppendSwitchASCII(
606a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)        switches::kUseGL, gfx::kGLImplementationOSMesaName);
607a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  } else if (!use_gl.empty()) {
608a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    command_line->AppendSwitchASCII(switches::kUseGL, use_gl);
609a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
610f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)  if (ui::GpuSwitchingManager::GetInstance()->SupportsDualGpus())
611a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    command_line->AppendSwitchASCII(switches::kSupportsDualGpus, "true");
612f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)  else
613a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    command_line->AppendSwitchASCII(switches::kSupportsDualGpus, "false");
614a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
6157d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  if (!swiftshader_path.empty()) {
616a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    command_line->AppendSwitchPath(switches::kSwiftShaderPath,
617a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                                   swiftshader_path);
6187d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  }
619a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
620a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (!gpu_driver_bugs_.empty()) {
621a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    command_line->AppendSwitchASCII(switches::kGpuDriverBugWorkarounds,
622a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                                    IntSetToString(gpu_driver_bugs_));
623a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
624a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
6253551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)  if (IsFeatureBlacklisted(gpu::GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE) &&
6263551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)      !command_line->HasSwitch(switches::kDisableAcceleratedVideoDecode)) {
6273551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)    command_line->AppendSwitch(switches::kDisableAcceleratedVideoDecode);
6283551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)  }
629a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)#if defined(ENABLE_WEBRTC)
630a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)  if (IsFeatureBlacklisted(gpu::GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE) &&
631a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      !command_line->HasSwitch(switches::kDisableWebRtcHWEncoding)) {
632a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)    command_line->AppendSwitch(switches::kDisableWebRtcHWEncoding);
633a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)  }
634a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)#endif
6353551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)
636a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // Pass GPU and driver information to GPU process. We try to avoid full GPU
637a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // info collection at GPU process startup, but we need gpu vendor_id,
638a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // device_id, driver_vendor, driver_version for deciding whether we need to
639a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // collect full info (on Linux) and for crash reporting purpose.
640a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  command_line->AppendSwitchASCII(switches::kGpuVendorID,
641a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      base::StringPrintf("0x%04x", gpu_info_.gpu.vendor_id));
642a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  command_line->AppendSwitchASCII(switches::kGpuDeviceID,
643a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      base::StringPrintf("0x%04x", gpu_info_.gpu.device_id));
644a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  command_line->AppendSwitchASCII(switches::kGpuDriverVendor,
645a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      gpu_info_.driver_vendor);
646a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  command_line->AppendSwitchASCII(switches::kGpuDriverVersion,
647a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      gpu_info_.driver_version);
648a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
649a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
650a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::AppendPluginCommandLine(
6516e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    base::CommandLine* command_line) const {
652a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  DCHECK(command_line);
653a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
654a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#if defined(OS_MACOSX)
655a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // TODO(jbauman): Add proper blacklist support for core animation plugins so
656a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // special-casing this video card won't be necessary. See
657a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // http://crbug.com/134015
6580529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  if (IsFeatureBlacklisted(gpu::GPU_FEATURE_TYPE_GPU_COMPOSITING)) {
659a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    if (!command_line->HasSwitch(
660a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)           switches::kDisableCoreAnimationPlugins))
661a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      command_line->AppendSwitch(
662a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)          switches::kDisableCoreAnimationPlugins);
663a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
664a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#endif
665a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
666a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
667a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::UpdateRendererWebPrefs(
668a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    WebPreferences* prefs) const {
669a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  DCHECK(prefs);
670a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
6715d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  if (IsFeatureBlacklisted(gpu::GPU_FEATURE_TYPE_WEBGL)) {
672a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    prefs->experimental_webgl_enabled = false;
6735d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    prefs->pepper_3d_enabled = false;
6745d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  }
67590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  if (IsFeatureBlacklisted(gpu::GPU_FEATURE_TYPE_FLASH3D))
676a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    prefs->flash_3d_enabled = false;
67790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  if (IsFeatureBlacklisted(gpu::GPU_FEATURE_TYPE_FLASH_STAGE3D)) {
678a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    prefs->flash_stage3d_enabled = false;
679a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    prefs->flash_stage3d_baseline_enabled = false;
680a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
68190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  if (IsFeatureBlacklisted(gpu::GPU_FEATURE_TYPE_FLASH_STAGE3D_BASELINE))
682a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    prefs->flash_stage3d_baseline_enabled = false;
68390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  if (IsFeatureBlacklisted(gpu::GPU_FEATURE_TYPE_ACCELERATED_2D_CANVAS))
684a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    prefs->accelerated_2d_canvas_enabled = false;
6855d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  if (IsDriverBugWorkaroundActive(gpu::DISABLE_MULTISAMPLING) ||
686424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)      (IsDriverBugWorkaroundActive(gpu::DISABLE_MULTIMONITOR_MULTISAMPLING) &&
687424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)          display_count_ > 1))
688a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    prefs->gl_multisampling_enabled = false;
689a36e5920737c6adbddd3e43b760e5de8431db6e0Torne (Richard Coles)
690a36e5920737c6adbddd3e43b760e5de8431db6e0Torne (Richard Coles)#if defined(USE_AURA)
6915d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  if (!CanUseGpuBrowserCompositor()) {
692a36e5920737c6adbddd3e43b760e5de8431db6e0Torne (Richard Coles)    prefs->accelerated_2d_canvas_enabled = false;
6935d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    prefs->pepper_3d_enabled = false;
6945d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  }
695a36e5920737c6adbddd3e43b760e5de8431db6e0Torne (Richard Coles)#endif
696a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)
697a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)  if (!IsFeatureBlacklisted(gpu::GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE) &&
6986e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)      !base::CommandLine::ForCurrentProcess()->HasSwitch(
699a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)          switches::kDisableAcceleratedVideoDecode)) {
700a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)    prefs->pepper_accelerated_video_decode_enabled = true;
701a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)  }
7025f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)
7035f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)  if (!IsFeatureBlacklisted(
7045f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)          gpu::GPU_FEATURE_TYPE_GPU_RASTERIZATION_EXPANDED_HEURISTICS) ||
7055f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)      base::FieldTrialList::FindFullName(
7065f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)          "GpuRasterizationExpandedContentWhitelist") == "Enabled")
7075f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)    prefs->use_expanded_heuristics_for_gpu_rasterization = true;
708a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
709a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
710a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::DisableHardwareAcceleration() {
711a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  card_blacklisted_ = true;
712a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
71390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  for (int i = 0; i < gpu::NUMBER_OF_GPU_FEATURE_TYPES; ++i)
714a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    blacklisted_features_.insert(i);
715a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
716a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  EnableSwiftShaderIfNecessary();
717a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  NotifyGpuInfoUpdate();
718a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
719a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
720a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)std::string GpuDataManagerImplPrivate::GetBlacklistVersion() const {
721a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (gpu_blacklist_)
722a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return gpu_blacklist_->version();
723a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  return "0";
724a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
725a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
726868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)std::string GpuDataManagerImplPrivate::GetDriverBugListVersion() const {
727868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  if (gpu_driver_bug_list_)
728868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)    return gpu_driver_bug_list_->version();
729868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  return "0";
730868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)}
731868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
732868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)void GpuDataManagerImplPrivate::GetBlacklistReasons(
733868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)    base::ListValue* reasons) const {
734a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (gpu_blacklist_)
735a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)    gpu_blacklist_->GetReasons(reasons, "disabledFeatures");
736a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)  if (gpu_driver_bug_list_)
737a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)    gpu_driver_bug_list_->GetReasons(reasons, "workarounds");
738868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)}
739868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
740868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)void GpuDataManagerImplPrivate::GetDriverBugWorkarounds(
741868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)    base::ListValue* workarounds) const {
742868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  for (std::set<int>::const_iterator it = gpu_driver_bugs_.begin();
743868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)       it != gpu_driver_bugs_.end(); ++it) {
744868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)    workarounds->AppendString(
745868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)        gpu::GpuDriverBugWorkaroundTypeToString(
746868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)            static_cast<gpu::GpuDriverBugWorkaroundType>(*it)));
747868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  }
748a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
749a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
750a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::AddLogMessage(
751a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    int level, const std::string& header, const std::string& message) {
7525d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  log_messages_.push_back(LogMessage(level, header, message));
753a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
754a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
755a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::ProcessCrashed(
756a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    base::TerminationStatus exit_code) {
757a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (!BrowserThread::CurrentlyOn(BrowserThread::UI)) {
758a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    // Unretained is ok, because it's posted to UI thread, the thread
759a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    // where the singleton GpuDataManagerImpl lives until the end.
760a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    BrowserThread::PostTask(
761a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)        BrowserThread::UI,
762a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)        FROM_HERE,
763a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)        base::Bind(&GpuDataManagerImpl::ProcessCrashed,
764a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                   base::Unretained(owner_),
765a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                   exit_code));
766a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return;
767a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
768a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  {
7695f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)    gpu_info_.process_crash_count = GpuProcessHost::gpu_crash_count();
770a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    GpuDataManagerImpl::UnlockedSession session(owner_);
771a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    observer_list_->Notify(
772a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)        &GpuDataManagerObserver::OnGpuProcessCrashed, exit_code);
773a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
774a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
775a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
776a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)base::ListValue* GpuDataManagerImplPrivate::GetLogMessages() const {
7775d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  base::ListValue* value = new base::ListValue;
7785d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  for (size_t ii = 0; ii < log_messages_.size(); ++ii) {
7795d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    base::DictionaryValue* dict = new base::DictionaryValue();
7805d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    dict->SetInteger("level", log_messages_[ii].level);
7815d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    dict->SetString("header", log_messages_[ii].header);
7825d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    dict->SetString("message", log_messages_[ii].message);
7835d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    value->Append(dict);
7845d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  }
785a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  return value;
786a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
787a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
788a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::HandleGpuSwitch() {
7890529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  GpuDataManagerImpl::UnlockedSession session(owner_);
7900529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  observer_list_->Notify(&GpuDataManagerObserver::OnGpuSwitching);
7910529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch}
7920529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch
7930529e5d033099cbfc42635f6f6183833b09dff6eBen Murdochbool GpuDataManagerImplPrivate::UpdateActiveGpu(
7940529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    uint32 vendor_id, uint32 device_id) {
7950529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  if (gpu_info_.gpu.vendor_id == vendor_id &&
7960529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      gpu_info_.gpu.device_id == device_id) {
7970529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    // The primary GPU is active.
798e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch    if (gpu_info_.gpu.active)
7990529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      return false;
8000529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    gpu_info_.gpu.active = true;
8010529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    for (size_t ii = 0; ii < gpu_info_.secondary_gpus.size(); ++ii)
8020529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      gpu_info_.secondary_gpus[ii].active = false;
8030529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  } else {
8040529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    // A secondary GPU is active.
805e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch    for (size_t ii = 0; ii < gpu_info_.secondary_gpus.size(); ++ii) {
8060529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      if (gpu_info_.secondary_gpus[ii].vendor_id == vendor_id &&
8070529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch          gpu_info_.secondary_gpus[ii].device_id == device_id) {
8080529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch        if (gpu_info_.secondary_gpus[ii].active)
8090529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch          return false;
8100529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch        gpu_info_.secondary_gpus[ii].active = true;
8110529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      } else {
8120529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch        gpu_info_.secondary_gpus[ii].active = false;
8130529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      }
814e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch    }
8150529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    gpu_info_.gpu.active = false;
816e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch  }
8170529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  UpdateGpuInfoHelper();
8180529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  return true;
819a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
820a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
8217dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdochbool GpuDataManagerImplPrivate::CanUseGpuBrowserCompositor() const {
8220529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  if (ShouldUseSwiftShader())
8230529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    return false;
8240529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  if (IsFeatureBlacklisted(gpu::GPU_FEATURE_TYPE_GPU_COMPOSITING))
8250529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    return false;
8260529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  return true;
8277dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch}
8287dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch
829a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::BlockDomainFrom3DAPIs(
830a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    const GURL& url, GpuDataManagerImpl::DomainGuilt guilt) {
831a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  BlockDomainFrom3DAPIsAtTime(url, guilt, base::Time::Now());
832a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
833a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
834a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)bool GpuDataManagerImplPrivate::Are3DAPIsBlocked(const GURL& url,
835a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                                                 int render_process_id,
836a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                                                 int render_view_id,
837a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                                                 ThreeDAPIType requester) {
838a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  bool blocked = Are3DAPIsBlockedAtTime(url, base::Time::Now()) !=
839a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      GpuDataManagerImpl::DOMAIN_BLOCK_STATUS_NOT_BLOCKED;
840a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (blocked) {
841a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    // Unretained is ok, because it's posted to UI thread, the thread
842a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    // where the singleton GpuDataManagerImpl lives until the end.
843a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    BrowserThread::PostTask(
844a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)        BrowserThread::UI, FROM_HERE,
845a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)        base::Bind(&GpuDataManagerImpl::Notify3DAPIBlocked,
846a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                   base::Unretained(owner_), url, render_process_id,
847a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                   render_view_id, requester));
848a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
849a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
850a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  return blocked;
851a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
852a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
853a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::DisableDomainBlockingFor3DAPIsForTesting() {
854a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  domain_blocking_enabled_ = false;
855a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
856a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
857a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)// static
858a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)GpuDataManagerImplPrivate* GpuDataManagerImplPrivate::Create(
859a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    GpuDataManagerImpl* owner) {
860a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  return new GpuDataManagerImplPrivate(owner);
861a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
862a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
863a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)GpuDataManagerImplPrivate::GpuDataManagerImplPrivate(
864a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    GpuDataManagerImpl* owner)
865a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    : complete_gpu_info_already_requested_(false),
866a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      observer_list_(new GpuDataManagerObserverList),
867a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      use_swiftshader_(false),
868a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      card_blacklisted_(false),
869a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      update_histograms_(true),
870a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      window_count_(0),
871a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      domain_blocking_enabled_(true),
872868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)      owner_(owner),
873eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch      display_count_(0),
874a36e5920737c6adbddd3e43b760e5de8431db6e0Torne (Richard Coles)      gpu_process_accessible_(true),
8754e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)      finalized_(false) {
876a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  DCHECK(owner_);
8776e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)  const base::CommandLine* command_line =
8786e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)      base::CommandLine::ForCurrentProcess();
879a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (command_line->HasSwitch(switches::kDisableGpu))
880a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    DisableHardwareAcceleration();
881a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
882a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#if defined(OS_MACOSX)
883868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  CGGetActiveDisplayList (0, NULL, &display_count_);
884a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  CGDisplayRegisterReconfigurationCallback(DisplayReconfigCallback, owner_);
885a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#endif  // OS_MACOSX
8868bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)
8878bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)  // For testing only.
8888bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)  if (command_line->HasSwitch(switches::kDisableDomainBlockingFor3DAPIs)) {
8898bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)    domain_blocking_enabled_ = false;
8908bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)  }
891a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
892a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
893a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)GpuDataManagerImplPrivate::~GpuDataManagerImplPrivate() {
894a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#if defined(OS_MACOSX)
895a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  CGDisplayRemoveReconfigurationCallback(DisplayReconfigCallback, owner_);
896a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)#endif
897a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
898a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
899a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::InitializeImpl(
900a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    const std::string& gpu_blacklist_json,
901a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    const std::string& gpu_driver_bug_list_json,
90290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    const gpu::GPUInfo& gpu_info) {
9034e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)  const bool log_gpu_control_list_decisions =
9046e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)      base::CommandLine::ForCurrentProcess()->HasSwitch(
9054e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)          switches::kLogGpuControlListDecisions);
9064e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)
907a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (!gpu_blacklist_json.empty()) {
90890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    gpu_blacklist_.reset(gpu::GpuBlacklist::Create());
9094e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    if (log_gpu_control_list_decisions)
9104e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)      gpu_blacklist_->enable_control_list_logging("gpu_blacklist");
9114e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    bool success = gpu_blacklist_->LoadList(
912a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)        gpu_blacklist_json, gpu::GpuControlList::kCurrentOsOnly);
9134e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    DCHECK(success);
914a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
915a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (!gpu_driver_bug_list_json.empty()) {
91690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    gpu_driver_bug_list_.reset(gpu::GpuDriverBugList::Create());
9174e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    if (log_gpu_control_list_decisions)
9184e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)      gpu_driver_bug_list_->enable_control_list_logging("gpu_driver_bug_list");
9194e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    bool success = gpu_driver_bug_list_->LoadList(
920a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)        gpu_driver_bug_list_json, gpu::GpuControlList::kCurrentOsOnly);
9214e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    DCHECK(success);
922a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
923a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
924a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  gpu_info_ = gpu_info;
925a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  UpdateGpuInfo(gpu_info);
926a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  UpdateGpuSwitchingManager(gpu_info);
927a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  UpdatePreliminaryBlacklistedFeatures();
928a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
929a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
930a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::UpdateBlacklistedFeatures(
931a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    const std::set<int>& features) {
932a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  blacklisted_features_ = features;
933a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
934a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // Force disable using the GPU for these features, even if they would
935a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // otherwise be allowed.
9360529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  if (card_blacklisted_) {
9370529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    blacklisted_features_.insert(gpu::GPU_FEATURE_TYPE_GPU_COMPOSITING);
93890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    blacklisted_features_.insert(gpu::GPU_FEATURE_TYPE_WEBGL);
939a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
940a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
941a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  EnableSwiftShaderIfNecessary();
942a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
943a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
944a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::UpdatePreliminaryBlacklistedFeatures() {
945a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  preliminary_blacklisted_features_ = blacklisted_features_;
946a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
947a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
948a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::UpdateGpuSwitchingManager(
94990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    const gpu::GPUInfo& gpu_info) {
950a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  ui::GpuSwitchingManager::GetInstance()->SetGpuCount(
951a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      gpu_info.secondary_gpus.size() + 1);
952a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
953a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (ui::GpuSwitchingManager::GetInstance()->SupportsDualGpus()) {
954f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)    if (gpu_driver_bugs_.count(gpu::FORCE_DISCRETE_GPU) == 1)
955f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)      ui::GpuSwitchingManager::GetInstance()->ForceUseOfDiscreteGpu();
956f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)    else if (gpu_driver_bugs_.count(gpu::FORCE_INTEGRATED_GPU) == 1)
957f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)      ui::GpuSwitchingManager::GetInstance()->ForceUseOfIntegratedGpu();
958a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
959a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
960a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
961a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::NotifyGpuInfoUpdate() {
962a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  observer_list_->Notify(&GpuDataManagerObserver::OnGpuInfoUpdate);
963a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
964a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
965a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::EnableSwiftShaderIfNecessary() {
966a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (!GpuAccessAllowed(NULL) ||
96790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      blacklisted_features_.count(gpu::GPU_FEATURE_TYPE_WEBGL)) {
968a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    if (!swiftshader_path_.empty() &&
9696e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)        !base::CommandLine::ForCurrentProcess()->HasSwitch(
970a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)             switches::kDisableSoftwareRasterizer))
971a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      use_swiftshader_ = true;
972a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
973a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
974a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
975a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)std::string GpuDataManagerImplPrivate::GetDomainFromURL(
976a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    const GURL& url) const {
977a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // For the moment, we just use the host, or its IP address, as the
978a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // entry in the set, rather than trying to figure out the top-level
979a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // domain. This does mean that a.foo.com and b.foo.com will be
980a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // treated independently in the blocking of a given domain, but it
981a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // would require a third-party library to reliably figure out the
982a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // top-level domain from a URL.
983a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (!url.has_host()) {
984a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return std::string();
985a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
986a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
987a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  return url.host();
988a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
989a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
990a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::BlockDomainFrom3DAPIsAtTime(
991a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    const GURL& url,
992a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    GpuDataManagerImpl::DomainGuilt guilt,
993a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    base::Time at_time) {
994a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (!domain_blocking_enabled_)
995a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return;
996a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
997a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  std::string domain = GetDomainFromURL(url);
998a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
999a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  DomainBlockEntry& entry = blocked_domains_[domain];
1000a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  entry.last_guilt = guilt;
1001a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  timestamps_of_gpu_resets_.push_back(at_time);
1002a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
1003a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1004a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)GpuDataManagerImpl::DomainBlockStatus
1005a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)GpuDataManagerImplPrivate::Are3DAPIsBlockedAtTime(
1006a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    const GURL& url, base::Time at_time) const {
1007a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (!domain_blocking_enabled_)
1008a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return GpuDataManagerImpl::DOMAIN_BLOCK_STATUS_NOT_BLOCKED;
1009a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1010a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // Note: adjusting the policies in this code will almost certainly
1011a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // require adjusting the associated unit tests.
1012a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  std::string domain = GetDomainFromURL(url);
1013a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1014a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  DomainBlockMap::const_iterator iter = blocked_domains_.find(domain);
1015a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  if (iter != blocked_domains_.end()) {
1016a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    // Err on the side of caution, and assume that if a particular
1017a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    // domain shows up in the block map, it's there for a good
1018a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    // reason and don't let its presence there automatically expire.
1019a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1020a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    UMA_HISTOGRAM_ENUMERATION("GPU.BlockStatusForClient3DAPIs",
1021a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                              BLOCK_STATUS_SPECIFIC_DOMAIN_BLOCKED,
1022a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                              BLOCK_STATUS_MAX);
1023a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1024a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    return GpuDataManagerImpl::DOMAIN_BLOCK_STATUS_BLOCKED;
1025a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
1026a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1027a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // Look at the timestamps of the recent GPU resets to see if there are
1028a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // enough within the threshold which would cause us to blacklist all
1029a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // domains. This doesn't need to be overly precise -- if time goes
1030a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // backward due to a system clock adjustment, that's fine.
1031a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  //
1032a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // TODO(kbr): make this pay attention to the TDR thresholds in the
1033a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  // Windows registry, but make sure it continues to be testable.
1034a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  {
1035a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    std::list<base::Time>::iterator iter = timestamps_of_gpu_resets_.begin();
1036a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    int num_resets_within_timeframe = 0;
1037a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    while (iter != timestamps_of_gpu_resets_.end()) {
1038a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      base::Time time = *iter;
1039a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      base::TimeDelta delta_t = at_time - time;
1040a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1041a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      // If this entry has "expired", just remove it.
1042a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      if (delta_t.InMilliseconds() > kBlockAllDomainsMs) {
1043a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)        iter = timestamps_of_gpu_resets_.erase(iter);
1044a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)        continue;
1045a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      }
1046a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1047a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      ++num_resets_within_timeframe;
1048a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      ++iter;
1049a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    }
1050a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1051a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    if (num_resets_within_timeframe >= kNumResetsWithinDuration) {
1052a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      UMA_HISTOGRAM_ENUMERATION("GPU.BlockStatusForClient3DAPIs",
1053a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                                BLOCK_STATUS_ALL_DOMAINS_BLOCKED,
1054a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                                BLOCK_STATUS_MAX);
1055a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1056a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)      return GpuDataManagerImpl::DOMAIN_BLOCK_STATUS_ALL_DOMAINS_BLOCKED;
1057a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)    }
1058a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  }
1059a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1060a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  UMA_HISTOGRAM_ENUMERATION("GPU.BlockStatusForClient3DAPIs",
1061a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                            BLOCK_STATUS_NOT_BLOCKED,
1062a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                            BLOCK_STATUS_MAX);
1063a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1064a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  return GpuDataManagerImpl::DOMAIN_BLOCK_STATUS_NOT_BLOCKED;
1065a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
1066a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1067a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)int64 GpuDataManagerImplPrivate::GetBlockAllDomainsDurationInMs() const {
1068a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  return kBlockAllDomainsMs;
1069a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
1070a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1071a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)void GpuDataManagerImplPrivate::Notify3DAPIBlocked(const GURL& url,
1072a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                                                   int render_process_id,
1073a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                                                   int render_view_id,
1074a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                                                   ThreeDAPIType requester) {
1075a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  GpuDataManagerImpl::UnlockedSession session(owner_);
1076a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)  observer_list_->Notify(&GpuDataManagerObserver::DidBlock3DAPIs,
1077a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)                         url, render_process_id, render_view_id, requester);
1078a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}
1079a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)
1080eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdochvoid GpuDataManagerImplPrivate::OnGpuProcessInitFailure() {
1081eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch  gpu_process_accessible_ = false;
1082eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch  gpu_info_.finalized = true;
1083eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch  complete_gpu_info_already_requested_ = true;
1084eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch  // Some observers might be waiting.
1085eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch  NotifyGpuInfoUpdate();
1086eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch}
1087eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch
1088a93a17c8d99d686bd4a1511e5504e5e6cc9fcadfTorne (Richard Coles)}  // namespace content
1089