Make the Linter happy.

This commit is contained in:
Charlie Hess 2016-04-29 22:05:36 -07:00
parent 3a9a1d35d7
commit 88805ec7e2
7 changed files with 27 additions and 19 deletions

View file

@ -138,12 +138,14 @@ void Browser::Activate(bool has_visible_windows) {
}
#if defined(OS_MACOSX)
bool Browser::ContinueUserActivity(const std::string& type, const std::map<std::string, std::string>& user_info) {
bool Browser::ContinueUserActivity(const std::string& type,
const std::map<std::string,
std::string>& user_info) {
bool handled = false;
FOR_EACH_OBSERVER(BrowserObserver,
observers_,
FOR_EACH_OBSERVER(BrowserObserver,
observers_,
OnContinueUserActivity(&handled, type, user_info));
return handled;
}
#endif