-
Notifications
You must be signed in to change notification settings - Fork 124
AdMob AdRequest Neighboring Content URLS #769
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
849a14f
b9c8edf
81416e0
e9744d2
4f4cd32
a46cd3a
3a627c8
0080b28
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ | |
|
||
#include <map> | ||
#include <string> | ||
#include <unordered_set> | ||
#include <vector> | ||
|
||
#include "app/src/include/firebase/variant.h" | ||
|
@@ -193,10 +194,14 @@ void ForEachAppDelegateClass(void (^block)(Class)); | |
NSMutableArray *StringVectorToNSMutableArray( | ||
const std::vector<std::string> &vector); | ||
|
||
// Convert a unordered_set of strings into an NSMutableArray. | ||
NSMutableArray *StringUnorderedSetToNSMutableArray( | ||
const std::unordered_set<std::string> &set); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
// Convert a NSArray into a vector of strings. Asserts if a non NSString | ||
// object is found in the array. | ||
void NSArrayOfNSStringToVectorOfString(NSArray *array, | ||
std::vector<std::string> *string_vector); | ||
void NSArrayOfNSStringToVectorOfString( | ||
NSArray *array, std::vector<std::string> *string_vector); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
// Convert a string map to NSDictionary. | ||
NSDictionary *StringMapToNSDictionary( | ||
|
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you can fix the lint error if you move the system #includes above the #ifdef __OBJC__.