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

Side by Side Diff: chrome/browser/extensions/event_router.h

Issue 16667019: Rename base/hash_tables to base/containers/hash_tables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_EXTENSIONS_EVENT_ROUTER_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EVENT_ROUTER_H_
6 #define CHROME_BROWSER_EXTENSIONS_EVENT_ROUTER_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EVENT_ROUTER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 #include <utility> 11 #include <utility>
12 12
13 #include "base/callback.h" 13 #include "base/callback.h"
14 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/hash_tables.h" 15 #include "base/containers/hash_tables.h"
16 #include "base/memory/linked_ptr.h" 16 #include "base/memory/linked_ptr.h"
17 #include "base/memory/ref_counted.h" 17 #include "base/memory/ref_counted.h"
18 #include "base/values.h" 18 #include "base/values.h"
19 #include "chrome/browser/extensions/event_listener_map.h" 19 #include "chrome/browser/extensions/event_listener_map.h"
20 #include "content/public/browser/notification_observer.h" 20 #include "content/public/browser/notification_observer.h"
21 #include "content/public/browser/notification_registrar.h" 21 #include "content/public/browser/notification_registrar.h"
22 #include "extensions/common/event_filtering_info.h" 22 #include "extensions/common/event_filtering_info.h"
23 #include "ipc/ipc_sender.h" 23 #include "ipc/ipc_sender.h"
24 24
25 class GURL; 25 class GURL;
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 EventListenerInfo(const std::string& event_name, 334 EventListenerInfo(const std::string& event_name,
335 const std::string& extension_id); 335 const std::string& extension_id);
336 336
337 const std::string event_name; 337 const std::string event_name;
338 const std::string extension_id; 338 const std::string extension_id;
339 }; 339 };
340 340
341 } // namespace extensions 341 } // namespace extensions
342 342
343 #endif // CHROME_BROWSER_EXTENSIONS_EVENT_ROUTER_H_ 343 #endif // CHROME_BROWSER_EXTENSIONS_EVENT_ROUTER_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/socket/socket_api.cc ('k') | chrome/browser/extensions/extensions_quota_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698