| OLD | NEW |
| 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 #include "extensions/browser/event_router.h" | 5 #include "extensions/browser/event_router.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include <tuple> | 9 #include <tuple> |
| 8 #include <utility> | 10 #include <utility> |
| 9 | 11 |
| 10 #include "base/atomic_sequence_num.h" | 12 #include "base/atomic_sequence_num.h" |
| 11 #include "base/bind.h" | 13 #include "base/bind.h" |
| 12 #include "base/command_line.h" | 14 #include "base/command_line.h" |
| 13 #include "base/lazy_instance.h" | 15 #include "base/lazy_instance.h" |
| 14 #include "base/message_loop/message_loop.h" | 16 #include "base/message_loop/message_loop.h" |
| 15 #include "base/metrics/histogram_macros.h" | 17 #include "base/metrics/histogram_macros.h" |
| 16 #include "base/stl_util.h" | 18 #include "base/stl_util.h" |
| (...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 902 const std::string& extension_id, | 904 const std::string& extension_id, |
| 903 const GURL& listener_url, | 905 const GURL& listener_url, |
| 904 content::BrowserContext* browser_context) | 906 content::BrowserContext* browser_context) |
| 905 : event_name(event_name), | 907 : event_name(event_name), |
| 906 extension_id(extension_id), | 908 extension_id(extension_id), |
| 907 listener_url(listener_url), | 909 listener_url(listener_url), |
| 908 browser_context(browser_context) { | 910 browser_context(browser_context) { |
| 909 } | 911 } |
| 910 | 912 |
| 911 } // namespace extensions | 913 } // namespace extensions |
| OLD | NEW |