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

Unified Diff: chrome/test/chromedriver/keycode_text_conversion_mac.mm

Issue 16917011: mac: Replace base::mac::ScopedCFTypeRef with base::ScopedCFTypeRef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: with fixed off-by-1 in git-clang-format Created 7 years, 6 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 | « chrome/service/chrome_service_application_mac.mm ('k') | chrome/test/chromedriver/test_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/keycode_text_conversion_mac.mm
diff --git a/chrome/test/chromedriver/keycode_text_conversion_mac.mm b/chrome/test/chromedriver/keycode_text_conversion_mac.mm
index 4b02ace2be15afc2d800091a071381c73fec16ca..d83df65729962178074b30676d148b294ebc3a10 100644
--- a/chrome/test/chromedriver/keycode_text_conversion_mac.mm
+++ b/chrome/test/chromedriver/keycode_text_conversion_mac.mm
@@ -44,7 +44,7 @@ bool ConvertKeyCodeToText(
// on UCKeyTranslate for more info.
UInt32 modifier_key_state = (mac_modifiers >> 8) & 0xFF;
- base::mac::ScopedCFTypeRef<TISInputSourceRef> input_source_copy(
+ base::ScopedCFTypeRef<TISInputSourceRef> input_source_copy(
TISCopyCurrentKeyboardLayoutInputSource());
CFDataRef layout_data = static_cast<CFDataRef>(TISGetInputSourceProperty(
input_source_copy, kTISPropertyUnicodeKeyLayoutData));
« no previous file with comments | « chrome/service/chrome_service_application_mac.mm ('k') | chrome/test/chromedriver/test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698