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

Unified Diff: ui/gl/gl_implementation_android.cc

Issue 12217101: Replace FilePath with base::FilePath in some more top level directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | « ui/gfx/video_decode_acceleration_support_mac.mm ('k') | ui/gl/gl_implementation_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_implementation_android.cc
diff --git a/ui/gl/gl_implementation_android.cc b/ui/gl/gl_implementation_android.cc
index 4dab47cbacaa2e4c322d02adb6530ecc963d4997..2b562a800522d3a1a5a67b7d4e60cf5adb84df74 100644
--- a/ui/gl/gl_implementation_android.cc
+++ b/ui/gl/gl_implementation_android.cc
@@ -27,7 +27,7 @@ void GL_BINDING_CALL MarshalDepthRangeToDepthRangef(GLclampd z_near,
glDepthRangef(static_cast<GLclampf>(z_near), static_cast<GLclampf>(z_far));
}
-base::NativeLibrary LoadLibrary(const FilePath& filename) {
+base::NativeLibrary LoadLibrary(const base::FilePath& filename) {
std::string error;
base::NativeLibrary library = base::LoadNativeLibrary(filename, &error);
if (!library) {
@@ -38,7 +38,7 @@ base::NativeLibrary LoadLibrary(const FilePath& filename) {
}
base::NativeLibrary LoadLibrary(const char* filename) {
- return LoadLibrary(FilePath(filename));
+ return LoadLibrary(base::FilePath(filename));
}
} // namespace
« no previous file with comments | « ui/gfx/video_decode_acceleration_support_mac.mm ('k') | ui/gl/gl_implementation_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698