Use a DictionaryValue everywhere instead of a string map.
This commit is contained in:
parent
2295f3a832
commit
90cc10944a
9 changed files with 37 additions and 38 deletions
|
@ -8,6 +8,8 @@
|
|||
#include <string>
|
||||
#include <map>
|
||||
|
||||
#include "base/values.h"
|
||||
|
||||
namespace atom {
|
||||
|
||||
class LoginHandler;
|
||||
|
@ -49,7 +51,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 std::map<std::string, std::string>& user_info) {}
|
||||
const base::DictionaryValue& user_info) {}
|
||||
|
||||
protected:
|
||||
virtual ~BrowserObserver() {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue