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

Unified Diff: google_apis/google_api_keys_mac.mm

Issue 2224473002: Add support for loading API keys from Info.plist on iOS and macOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nits Created 4 years, 4 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 | « google_apis/google_api_keys_mac.h ('k') | google_apis/google_api_keys_mac_unittest.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/google_api_keys_mac.mm
diff --git a/google_apis/google_api_keys_mac.mm b/google_apis/google_api_keys_mac.mm
new file mode 100644
index 0000000000000000000000000000000000000000..e7c8c1e5d825c66053202498bf7e19b114c9c4c3
--- /dev/null
+++ b/google_apis/google_api_keys_mac.mm
@@ -0,0 +1,22 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#import "google_api_keys_mac.h"
+
+#import <Foundation/Foundation.h>
+
+#include "base/mac/bundle_locations.h"
+#include "base/mac/foundation_util.h"
+#include "base/strings/sys_string_conversions.h"
+
+namespace google_apis {
+
+std::string GetAPIKeyFromInfoPlist(const std::string& key_name) {
+ NSString* keyName = base::SysUTF8ToNSString(key_name);
+ NSString* keyValue = base::mac::ObjCCast<NSString>(
+ [base::mac::FrameworkBundle() objectForInfoDictionaryKey:keyName]);
+ return base::SysNSStringToUTF8(keyValue);
+}
+
+} // namespace google_apis
« no previous file with comments | « google_apis/google_api_keys_mac.h ('k') | google_apis/google_api_keys_mac_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698