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

Unified Diff: app/gfx/gl/gl_implementation_win.cc

Issue 6325005: Relanding r71472.... Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 | « app/gfx/gl/gl_implementation_mac.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/gfx/gl/gl_implementation_win.cc
===================================================================
--- app/gfx/gl/gl_implementation_win.cc (revision 71474)
+++ app/gfx/gl/gl_implementation_win.cc (working copy)
@@ -45,7 +45,7 @@
base::NativeLibrary library = base::LoadNativeLibrary(
module_path.Append(L"osmesa.dll"));
if (!library) {
- DVLOG(1) << "osmesa.dll not found";
+ VLOG(1) << "osmesa.dll not found";
return false;
}
@@ -78,7 +78,7 @@
base::NativeLibrary gles_library = base::LoadNativeLibrary(
module_path.Append(L"libglesv2.dll"));
if (!gles_library) {
- LOG(ERROR) << "libglesv2.dll not found";
+ VLOG(1) << "libglesv2.dll not found";
return false;
}
@@ -87,7 +87,7 @@
base::NativeLibrary egl_library = base::LoadNativeLibrary(
module_path.Append(L"libegl.dll"));
if (!egl_library) {
- LOG(ERROR) << "libegl.dll not found.";
+ VLOG(1) << "libegl.dll not found.";
base::UnloadNativeLibrary(gles_library);
return false;
}
« no previous file with comments | « app/gfx/gl/gl_implementation_mac.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698