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
|
@ -10,6 +10,7 @@
|
|||
#include <map>
|
||||
|
||||
#include "base/macros.h"
|
||||
#include "base/values.h"
|
||||
#include "base/compiler_specific.h"
|
||||
#include "base/observer_list.h"
|
||||
#include "base/strings/string16.h"
|
||||
|
@ -95,11 +96,11 @@ class Browser : public WindowListObserver {
|
|||
|
||||
// Creates an activity and sets it as the one currently in use.
|
||||
void SetUserActivity(const std::string& type,
|
||||
const std::map<std::string, std::string>& user_info);
|
||||
const base::DictionaryValue& user_info);
|
||||
|
||||
// Resumes an activity via hand-off.
|
||||
bool ContinueUserActivity(const std::string& type,
|
||||
const std::map<std::string, std::string>& user_info);
|
||||
const base::DictionaryValue& user_info);
|
||||
|
||||
// Bounce the dock icon.
|
||||
enum BounceType {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue