| Index: chrome/browser/site_details.h
|
| diff --git a/chrome/browser/site_details.h b/chrome/browser/site_details.h
|
| index 555e8918cfa6c6ea0d1b1eba3abefe378cfe19e1..b90cb5cd91c6e6e9e0afc73c769e7b5183b37ffd 100644
|
| --- a/chrome/browser/site_details.h
|
| +++ b/chrome/browser/site_details.h
|
| @@ -5,13 +5,16 @@
|
| #ifndef CHROME_BROWSER_SITE_DETAILS_H_
|
| #define CHROME_BROWSER_SITE_DETAILS_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/containers/hash_tables.h"
|
| +#include "base/macros.h"
|
| #include "content/public/browser/browser_context.h"
|
| #include "content/public/browser/site_instance.h"
|
| #include "content/public/browser/web_contents.h"
|
|
|
| // Maps an ID representing each BrowsingInstance to a set of site URLs.
|
| -using BrowsingInstanceSiteMap = base::hash_map<int32, std::set<GURL>>;
|
| +using BrowsingInstanceSiteMap = base::hash_map<int32_t, std::set<GURL>>;
|
|
|
| // Maps a SiteInstance to a set of all SiteInstances in the same
|
| // BrowsingInstance.
|
|
|