diff options
author | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-28 18:07:44 +0000 |
---|---|---|
committer | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-28 18:07:44 +0000 |
commit | 418c3cb40cbbf9d2e1336353f9ec5ce6f4cbb7a1 (patch) | |
tree | c0bd6e7e59801b480856da505d0835417e1fe574 /ui/gfx/gl/gl_implementation.h | |
parent | 01cf589c36d50698579d255e09ae219d263263b4 (diff) | |
download | chromium_src-418c3cb40cbbf9d2e1336353f9ec5ce6f4cbb7a1.zip chromium_src-418c3cb40cbbf9d2e1336353f9ec5ce6f4cbb7a1.tar.gz chromium_src-418c3cb40cbbf9d2e1336353f9ec5ce6f4cbb7a1.tar.bz2 |
Turn on UIPI for the GPU sandbox.
GPU sandbox will start with UIPI by default. I had to move some switch values under ui/gfx/gl in order to avoid dependency hell.
BUG=90750
Review URL: http://codereview.chromium.org/7517012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94500 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/gl/gl_implementation.h')
-rw-r--r-- | ui/gfx/gl/gl_implementation.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ui/gfx/gl/gl_implementation.h b/ui/gfx/gl/gl_implementation.h index f357b31..c3e3ca4 100644 --- a/ui/gfx/gl/gl_implementation.h +++ b/ui/gfx/gl/gl_implementation.h @@ -10,6 +10,7 @@ #include "base/native_library.h" #include "build/build_config.h" +#include "ui/gfx/gl/gl_switches.h" namespace gfx { @@ -22,12 +23,6 @@ enum GLImplementation { kGLImplementationMockGL }; -// The GL implementation names that can be passed to --use-gl. -extern const char kGLImplementationDesktopName[]; -extern const char kGLImplementationOSMesaName[]; -extern const char kGLImplementationEGLName[]; -extern const char kGLImplementationMockName[]; - #if defined(OS_WIN) typedef void* (WINAPI *GLGetProcAddressProc)(const char* name); #else |