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

Unified Diff: media/video/capture/screen/screen_capturer_mac.mm

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
Index: media/video/capture/screen/screen_capturer_mac.mm
diff --git a/media/video/capture/screen/screen_capturer_mac.mm b/media/video/capture/screen/screen_capturer_mac.mm
index 52e36f1c6bd68dcc741ee13f0f593f632caa3181..27aea6c6586aed9998bcff1c4ab8805573d4f7f6 100644
--- a/media/video/capture/screen/screen_capturer_mac.mm
+++ b/media/video/capture/screen/screen_capturer_mac.mm
@@ -700,13 +700,13 @@ void ScreenCapturerMac::ScreenConfigurationChanged() {
// Dynamically link to the deprecated pre-Lion capture APIs.
std::string app_services_library_error;
- FilePath app_services_path(kApplicationServicesLibraryName);
+ base::FilePath app_services_path(kApplicationServicesLibraryName);
app_services_library_.Reset(
base::LoadNativeLibrary(app_services_path, &app_services_library_error));
CHECK(app_services_library_.is_valid()) << app_services_library_error;
std::string opengl_library_error;
- FilePath opengl_path(kOpenGlLibraryName);
+ base::FilePath opengl_path(kOpenGlLibraryName);
opengl_library_.Reset(
base::LoadNativeLibrary(opengl_path, &opengl_library_error));
CHECK(opengl_library_.is_valid()) << opengl_library_error;
« no previous file with comments | « media/video/capture/linux/video_capture_device_linux.cc ('k') | media/video/capture/screen/screen_capturer_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698