chromium/chrome/browser/metrics/chrome_browser_main_extra_parts_metrics_mac.mm

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.h"

#import <AppKit/AppKit.h>

#include "base/metrics/histogram_macros.h"

namespace {

// The possible values of the setting "Screens Have Separate Spaces".
enum ScreenSpacesConfiguration {
  SCREENS_CANNOT_HAVE_SEPARATE_SPACES_DEPRECATED = 0,
  SCREENS_HAVE_SEPARATE_SPACES = 1,
  SCREENS_HAVE_SHARED_SPACES = 2,
  SCREEN_SPACES_CONFIGURATION_COUNT = 3
};

}  // namespace