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

Side by Side Diff: extensions/browser/event_router.cc

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: Created 4 years, 12 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 | « extensions/browser/event_router.h ('k') | extensions/browser/event_router_factory.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) 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
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
OLDNEW
« no previous file with comments | « extensions/browser/event_router.h ('k') | extensions/browser/event_router_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698