| 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;
|
|
|