diff options
author | vandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-25 17:27:20 +0000 |
---|---|---|
committer | vandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-25 17:27:20 +0000 |
commit | 2f4fda47335875e92108a67f4532a97f8c00b4aa (patch) | |
tree | ce20db056bc06d0d503ff89cf738229d43e53495 /ui | |
parent | 7cb01d9331172089968c1918005765e31a43c027 (diff) | |
download | chromium_src-2f4fda47335875e92108a67f4532a97f8c00b4aa.zip chromium_src-2f4fda47335875e92108a67f4532a97f8c00b4aa.tar.gz chromium_src-2f4fda47335875e92108a67f4532a97f8c00b4aa.tar.bz2 |
Revert 86631 - Fix up PathProvider on the Mac for FILE_MODULE.
PathProvider on the Mac always returned the FILE_EXE for FILE_MODULE,
which isn't necessarily correct.
BUG=NONE
TEST=BUILD
Review URL: http://codereview.chromium.org/7019041
TBR=dmaclach@chromium.org
Review URL: http://codereview.chromium.org/6992071
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86649 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui')
-rw-r--r-- | ui/gfx/gl/gl_implementation_mac.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ui/gfx/gl/gl_implementation_mac.cc b/ui/gfx/gl/gl_implementation_mac.cc index 351bc11..a8b3ddd 100644 --- a/ui/gfx/gl/gl_implementation_mac.cc +++ b/ui/gfx/gl/gl_implementation_mac.cc @@ -31,10 +31,6 @@ bool InitializeGLBindings(GLImplementation implementation) { return false; } - // osmesa.so is located in: - // Contents/Versions/<vers>/Chromium Framework.framework/Libraries - module_path = module_path.DirName().Append("Libraries"); - // When using OSMesa, just use OSMesaGetProcAddress to find entry points. base::NativeLibrary library = base::LoadNativeLibrary( module_path.Append("osmesa.so"), NULL); |