diff options
Diffstat (limited to 'chrome/plugin')
-rw-r--r-- | chrome/plugin/plugin_thread.cc | 4 | ||||
-rw-r--r-- | chrome/plugin/webplugin_proxy.cc | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/chrome/plugin/plugin_thread.cc b/chrome/plugin/plugin_thread.cc index 399da12..1400e4a 100644 --- a/chrome/plugin/plugin_thread.cc +++ b/chrome/plugin/plugin_thread.cc @@ -41,7 +41,7 @@ #include "app/x11_util.h" #elif defined(OS_MACOSX) #include "app/l10n_util.h" -#include "base/mac_util.h" +#include "base/mac/mac_util.h" #include "base/mac/scoped_cftyperef.h" #include "base/sys_string_conversions.h" #include "grit/chromium_strings.h" @@ -100,7 +100,7 @@ PluginThread::PluginThread() base::mac::ScopedCFTypeRef<CFStringRef> process_name( CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("%@ (%@)"), plugin_name.get(), app_name.get())); - mac_util::SetProcessName(process_name); + base::mac::SetProcessName(process_name); #endif } diff --git a/chrome/plugin/webplugin_proxy.cc b/chrome/plugin/webplugin_proxy.cc index 1d7a077..8aeed6c 100644 --- a/chrome/plugin/webplugin_proxy.cc +++ b/chrome/plugin/webplugin_proxy.cc @@ -24,7 +24,7 @@ #include "webkit/plugins/npapi/webplugin_delegate_impl.h" #if defined(OS_MACOSX) -#include "base/mac_util.h" +#include "base/mac/mac_util.h" #include "base/mac/scoped_cftyperef.h" #include "chrome/plugin/webplugin_accelerated_surface_proxy_mac.h" #endif @@ -573,7 +573,7 @@ void WebPluginProxy::SetWindowlessBuffer( window_rect.width(), window_rect.height(), 8, 4 * window_rect.width(), - mac_util::GetSystemColorSpace(), + base::mac::GetSystemColorSpace(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host)); CGContextTranslateCTM(windowless_context_, 0, window_rect.height()); @@ -584,7 +584,7 @@ void WebPluginProxy::SetWindowlessBuffer( window_rect.width(), window_rect.height(), 8, 4 * window_rect.width(), - mac_util::GetSystemColorSpace(), + base::mac::GetSystemColorSpace(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host)); CGContextTranslateCTM(background_context_, 0, window_rect.height()); |