| Index: ui/gl/gl_implementation_mac.cc
|
| diff --git a/ui/gl/gl_implementation_mac.cc b/ui/gl/gl_implementation_mac.cc
|
| deleted file mode 100644
|
| index 2a8ab0dcbf84e9c4858db6156b6e4bb0368d5601..0000000000000000000000000000000000000000
|
| --- a/ui/gl/gl_implementation_mac.cc
|
| +++ /dev/null
|
| @@ -1,29 +0,0 @@
|
| -// Copyright (c) 2012 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.
|
| -
|
| -#include "ui/gl/gl_implementation.h"
|
| -
|
| -#include "base/command_line.h"
|
| -#include "base/logging.h"
|
| -#include "ui/gl/gl_context_stub_with_extensions.h"
|
| -#include "ui/gl/gl_gl_api_implementation.h"
|
| -#include "ui/gl/gl_osmesa_api_implementation.h"
|
| -
|
| -namespace gl {
|
| -
|
| -void GetAllowedGLImplementations(std::vector<GLImplementation>* impls) {
|
| - if (base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| - switches::kEnableUnsafeES3APIs)) {
|
| - impls->push_back(kGLImplementationDesktopGLCoreProfile);
|
| - }
|
| - impls->push_back(kGLImplementationDesktopGL);
|
| - impls->push_back(kGLImplementationAppleGL);
|
| - impls->push_back(kGLImplementationOSMesaGL);
|
| -}
|
| -
|
| -bool GetGLWindowSystemBindingInfo(GLWindowSystemBindingInfo* info) {
|
| - return false;
|
| -}
|
| -
|
| -} // namespace gl
|
|
|