Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(551)

Unified Diff: chrome/common/gpu_feature_flags.h

Issue 6672064: Move gpu_feature_flags from chrome\common to content\browser since it's only ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/gpu_feature_flags.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/gpu_feature_flags.h
===================================================================
--- chrome/common/gpu_feature_flags.h (revision 78449)
+++ chrome/common/gpu_feature_flags.h (working copy)
@@ -1,62 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_COMMON_GPU_FEATURE_FLAGS_H__
-#define CHROME_COMMON_GPU_FEATURE_FLAGS_H__
-#pragma once
-
-// Provides flags indicating which gpu features are blacklisted for the system
-// on which chrome is currently running.
-
-#include <string>
-
-#include "base/basictypes.h"
-
-class GpuFeatureFlags {
- public:
- enum GpuFeatureType {
- kGpuFeatureAccelerated2dCanvas = 1 << 0,
- kGpuFeatureAcceleratedCompositing = 1 << 1,
- kGpuFeatureWebgl = 1 << 2,
- kGpuFeatureMultisampling = 1 << 3,
- kGpuFeatureAll = kGpuFeatureAccelerated2dCanvas |
- kGpuFeatureAcceleratedCompositing |
- kGpuFeatureWebgl |
- kGpuFeatureMultisampling,
- kGpuFeatureUnknown = 0
- };
-
- // All flags initialized to false, i.e., no feature is blacklisted.
- GpuFeatureFlags();
-
- // flags are OR combination of GpuFeatureType.
- void set_flags(uint32 flags);
-
- uint32 flags() const;
-
- // Resets each flag by OR with the corresponding flag in "other".
- void Combine(const GpuFeatureFlags& other);
-
- // Maps string to GpuFeatureType; returns kGpuFeatureUnknown if none of the
- // following is input (case-sensitive):
- // "accelerated_2d_canvas"
- // "accelerated_compositing"
- // "webgl"
- // "multisampling"
- static GpuFeatureType StringToGpuFeatureType(
- const std::string& feature_string);
-
- private:
- static const char kGpuFeatureNameAccelerated2dCanvas[];
- static const char kGpuFeatureNameAcceleratedCompositing[];
- static const char kGpuFeatureNameWebgl[];
- static const char kGpuFeatureNameMultisampling[];
- static const char kGpuFeatureNameAll[];
-
- // If a bit is set to 1, corresponding feature is blacklisted.
- uint32 flags_;
-};
-
-#endif // CHROME_COMMON_GPU_FEATURE_FLAGS_H__
-
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/gpu_feature_flags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698