| Index: content/browser/host_zoom_map.h
|
| diff --git a/content/browser/host_zoom_map.h b/content/browser/host_zoom_map.h
|
| index d51e2c73fdbe3335dfce857a2118c4d2e250a985..d3232d38b624ac56ddb78e04c40d57f56b552d03 100644
|
| --- a/content/browser/host_zoom_map.h
|
| +++ b/content/browser/host_zoom_map.h
|
| @@ -31,8 +31,8 @@ class GURL;
|
| // to notifications on there (and holds a NotificationRegistrar).
|
| class CONTENT_EXPORT HostZoomMap
|
| : public content::NotificationObserver,
|
| - public base::RefCountedThreadSafe<HostZoomMap,
|
| - BrowserThread::DeleteOnUIThread> {
|
| + public base::RefCountedThreadSafe<
|
| + HostZoomMap, content::BrowserThread::DeleteOnUIThread> {
|
| public:
|
| explicit HostZoomMap();
|
| explicit HostZoomMap(HostZoomMap* original);
|
| @@ -81,9 +81,10 @@ class CONTENT_EXPORT HostZoomMap
|
| HostZoomMap* GetOriginal() const { return original_; }
|
|
|
| private:
|
| - friend class base::RefCountedThreadSafe<HostZoomMap,
|
| - BrowserThread::DeleteOnUIThread>;
|
| - friend struct BrowserThread::DeleteOnThread<BrowserThread::UI>;
|
| + friend class base::RefCountedThreadSafe<
|
| + HostZoomMap, content::BrowserThread::DeleteOnUIThread>;
|
| + friend struct content::BrowserThread::DeleteOnThread<
|
| + content::BrowserThread::UI>;
|
| friend class DeleteTask<HostZoomMap>;
|
|
|
| typedef std::map<std::string, double> HostZoomLevels;
|
|
|