Revert "Use a DictionaryValue everywhere instead of a string map."

This reverts commit 90cc10944a.
This commit is contained in:
Charlie Hess 2016-05-03 10:31:53 -07:00
parent 90cc10944a
commit f84a973d69
9 changed files with 38 additions and 37 deletions

View file

@ -8,8 +8,6 @@
#include <string>
#include <map>
#include "base/values.h"
namespace atom {
class LoginHandler;
@ -51,7 +49,7 @@ class BrowserObserver {
// The browser wants to resume a user activity via handoff. (OS X only)
virtual void OnContinueUserActivity(bool* prevent_default,
const std::string& type,
const base::DictionaryValue& user_info) {}
const std::map<std::string, std::string>& user_info) {}
protected:
virtual ~BrowserObserver() {}