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

Unified Diff: chrome/test/webdriver/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/test/chromedriver/test_util.cc ('k') | chrome/test/webdriver/webdriver_test_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/keycode_text_conversion_mac.mm
diff --git a/chrome/test/webdriver/keycode_text_conversion_mac.mm b/chrome/test/webdriver/keycode_text_conversion_mac.mm
index 7db3366b76f8d9f2682b15d014a751397472c572..aa2e424824f5f6f91fc170ec7e930ba033b5348f 100644
--- a/chrome/test/webdriver/keycode_text_conversion_mac.mm
+++ b/chrome/test/webdriver/keycode_text_conversion_mac.mm
@@ -41,7 +41,7 @@ std::string ConvertKeyCodeToText(ui::KeyboardCode key_code, int modifiers) {
// 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/test/chromedriver/test_util.cc ('k') | chrome/test/webdriver/webdriver_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698