forked from organicmaps/organicmaps
Clang-format.
This commit is contained in:
parent
048dc6cb90
commit
02cb72fd8b
5 changed files with 14 additions and 21 deletions
|
@ -1,7 +1,7 @@
|
|||
#import <MyTrackerSDK/MRMyTracker.h>
|
||||
#import <Pushwoosh/PushNotificationManager.h>
|
||||
#import "Common.h"
|
||||
#import "MapsAppDelegate.h"
|
||||
#import <MyTrackerSDK/MRMyTracker.h>
|
||||
|
||||
#ifdef OMIM_PRODUCTION
|
||||
# include "fabric_logging.hpp"
|
||||
|
@ -37,7 +37,7 @@ void setMarketingSender()
|
|||
if (tag.empty())
|
||||
return;
|
||||
NSMutableDictionary<NSString *, NSString *> * eventParams = [@{} mutableCopy];
|
||||
for(auto const & param : params)
|
||||
for (auto const & param : params)
|
||||
eventParams[@(param.first.c_str())] = @(param.second.c_str());
|
||||
[MRMyTracker trackEvent:@(tag.c_str()) eventParams:eventParams];
|
||||
});
|
||||
|
|
|
@ -6,12 +6,12 @@
|
|||
|
||||
#include "base/exception.hpp"
|
||||
|
||||
#include "std/string.hpp"
|
||||
#include "std/vector.hpp"
|
||||
#include "std/map.hpp"
|
||||
#include "std/utility.hpp"
|
||||
#include "std/function.hpp"
|
||||
#include "std/bitset.hpp"
|
||||
#include "std/function.hpp"
|
||||
#include "std/map.hpp"
|
||||
#include "std/string.hpp"
|
||||
#include "std/utility.hpp"
|
||||
#include "std/vector.hpp"
|
||||
|
||||
#include "defines.hpp"
|
||||
|
||||
|
|
|
@ -261,11 +261,11 @@ void Platform::SetupMeasurementSystem() const
|
|||
}
|
||||
|
||||
/// @see implementation of methods below in android/jni/com/.../Platform.cpp
|
||||
//void Platform::RunOnGuiThread(TFunctor const & fn){}
|
||||
//void Platform::SendPushWooshTag(string const & tag){}
|
||||
//void Platform::SendPushWooshTag(string const & tag, string const & value){}
|
||||
//void Platform::SendPushWooshTag(string const & tag, vector<string> const & values){}
|
||||
//void Platform::SendMarketingEvent(string const & tag, map<string, string> const & params){}
|
||||
// void Platform::RunOnGuiThread(TFunctor const & fn){}
|
||||
// void Platform::SendPushWooshTag(string const & tag){}
|
||||
// void Platform::SendPushWooshTag(string const & tag, string const & value){}
|
||||
// void Platform::SendPushWooshTag(string const & tag, vector<string> const & values){}
|
||||
// void Platform::SendMarketingEvent(string const & tag, map<string, string> const & params){}
|
||||
|
||||
namespace
|
||||
{
|
||||
|
|
|
@ -151,7 +151,4 @@ void Platform::SendPushWooshTag(string const & tag, string const & value)
|
|||
void Platform::SendPushWooshTag(string const & tag, vector<string> const & values)
|
||||
{
|
||||
}
|
||||
|
||||
void Platform::SendMarketingEvent(string const & tag, map<string, string> const & params)
|
||||
{
|
||||
}
|
||||
void Platform::SendMarketingEvent(string const & tag, map<string, string> const & params) {}
|
||||
|
|
|
@ -107,11 +107,7 @@ void Platform::SendPushWooshTag(string const & tag, string const & value)
|
|||
void Platform::SendPushWooshTag(string const & tag, vector<string> const & values)
|
||||
{
|
||||
}
|
||||
|
||||
void Platform::SendMarketingEvent(string const & tag, map<string, string> const & params)
|
||||
{
|
||||
}
|
||||
|
||||
void Platform::SendMarketingEvent(string const & tag, map<string, string> const & params) {}
|
||||
#endif // defined(OMIM_OS_LINUX)
|
||||
|
||||
extern Platform & GetPlatform()
|
||||
|
|
Loading…
Add table
Reference in a new issue