summaryrefslogtreecommitdiffstats
path: root/media/video/capture/screen/screen_capturer_mac.mm
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-10 05:15:45 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-10 05:15:45 +0000
commit79f6388902881a0aab426e9606c544b68ab3b9bc (patch)
treedf8da7e82fded47bccf4fe32922a8451a475bf97 /media/video/capture/screen/screen_capturer_mac.mm
parent6d4b67a4b50d73d5001aec99014ac40bc504871a (diff)
downloadchromium_src-79f6388902881a0aab426e9606c544b68ab3b9bc.zip
chromium_src-79f6388902881a0aab426e9606c544b68ab3b9bc.tar.gz
chromium_src-79f6388902881a0aab426e9606c544b68ab3b9bc.tar.bz2
Replace FilePath with base::FilePath in some more top level directories.
Review URL: https://codereview.chromium.org/12217101 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181640 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/video/capture/screen/screen_capturer_mac.mm')
-rw-r--r--media/video/capture/screen/screen_capturer_mac.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/media/video/capture/screen/screen_capturer_mac.mm b/media/video/capture/screen/screen_capturer_mac.mm
index 52e36f1..27aea6c 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;