Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(437)

Side by Side Diff: chrome/browser/chrome_plugin_browsing_context.h

Issue 173026: Move IDMap back to base/ where it is needed. (Closed)
Patch Set: Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/id_map_unittest.cc ('k') | chrome/browser/renderer_host/render_process_host.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROME_PLUGIN_BROWSING_CONTEXT_H_ 5 #ifndef CHROME_BROWSER_CHROME_PLUGIN_BROWSING_CONTEXT_H_
6 #define CHROME_BROWSER_CHROME_PLUGIN_BROWSING_CONTEXT_H_ 6 #define CHROME_BROWSER_CHROME_PLUGIN_BROWSING_CONTEXT_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/id_map.h"
10 #include "chrome/common/chrome_plugin_api.h" 11 #include "chrome/common/chrome_plugin_api.h"
11 #include "chrome/common/id_map.h"
12 #include "chrome/common/notification_registrar.h" 12 #include "chrome/common/notification_registrar.h"
13 13
14 class URLRequestContext; 14 class URLRequestContext;
15 15
16 // This class manages the mapping between CPBrowsingContexts and 16 // This class manages the mapping between CPBrowsingContexts and
17 // URLRequestContexts. It observes when URLRequestContexts go away, and 17 // URLRequestContexts. It observes when URLRequestContexts go away, and
18 // invalidates the corresponding CPBrowsingContexts. CPBrowsingContexts can be 18 // invalidates the corresponding CPBrowsingContexts. CPBrowsingContexts can be
19 // associated with other data as well, so there can be multiple ones referring 19 // associated with other data as well, so there can be multiple ones referring
20 // to a given URLRequestContext. 20 // to a given URLRequestContext.
21 // Note: This class should be used on the IO thread only. 21 // Note: This class should be used on the IO thread only.
(...skipping 29 matching lines...) Expand all
51 typedef IDMap<URLRequestContext> Map; 51 typedef IDMap<URLRequestContext> Map;
52 typedef std::map<URLRequestContext*, CPBrowsingContext> ReverseMap; 52 typedef std::map<URLRequestContext*, CPBrowsingContext> ReverseMap;
53 53
54 NotificationRegistrar registrar_; 54 NotificationRegistrar registrar_;
55 55
56 Map map_; // map of CPBrowsingContext -> URLRequestContext 56 Map map_; // map of CPBrowsingContext -> URLRequestContext
57 ReverseMap reverse_map_; // map of URLRequestContext -> CPBrowsingContext 57 ReverseMap reverse_map_; // map of URLRequestContext -> CPBrowsingContext
58 }; 58 };
59 59
60 #endif // CHROME_BROWSER_CHROME_PLUGIN_BROWSING_CONTEXT_H_ 60 #endif // CHROME_BROWSER_CHROME_PLUGIN_BROWSING_CONTEXT_H_
OLDNEW
« no previous file with comments | « base/id_map_unittest.cc ('k') | chrome/browser/renderer_host/render_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698