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

Side by Side Diff: content/child/navigator_connect/service_port_provider.h

Issue 1544273002: Switch to standard integer types in content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CONTENT_CHILD_NAVIGATOR_CONNECT_SERVICE_PORT_PROVIDER_H_ 5 #ifndef CONTENT_CHILD_NAVIGATOR_CONNECT_SERVICE_PORT_PROVIDER_H_
6 #define CONTENT_CHILD_NAVIGATOR_CONNECT_SERVICE_PORT_PROVIDER_H_ 6 #define CONTENT_CHILD_NAVIGATOR_CONNECT_SERVICE_PORT_PROVIDER_H_
7 7
8 #include <stdint.h>
9
8 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
9 #include "base/id_map.h" 11 #include "base/id_map.h"
12 #include "base/macros.h"
10 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
11 #include "content/child/worker_thread_registry.h" 14 #include "content/child/worker_thread_registry.h"
12 #include "content/common/service_port_service.mojom.h" 15 #include "content/common/service_port_service.mojom.h"
13 #include "mojo/public/cpp/bindings/binding.h" 16 #include "mojo/public/cpp/bindings/binding.h"
14 #include "third_party/WebKit/public/platform/modules/navigator_services/WebServi cePortProvider.h" 17 #include "third_party/WebKit/public/platform/modules/navigator_services/WebServi cePortProvider.h"
15 18
16 class GURL; 19 class GURL;
17 20
18 namespace base { 21 namespace base {
19 class SingleThreadTaskRunner; 22 class SingleThreadTaskRunner;
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 ServicePortServicePtr service_port_service_; 92 ServicePortServicePtr service_port_service_;
90 93
91 scoped_refptr<base::SingleThreadTaskRunner> main_loop_; 94 scoped_refptr<base::SingleThreadTaskRunner> main_loop_;
92 95
93 DISALLOW_COPY_AND_ASSIGN(ServicePortProvider); 96 DISALLOW_COPY_AND_ASSIGN(ServicePortProvider);
94 }; 97 };
95 98
96 } // namespace content 99 } // namespace content
97 100
98 #endif // CONTENT_CHILD_NAVIGATOR_CONNECT_SERVICE_PORT_PROVIDER_H_ 101 #endif // CONTENT_CHILD_NAVIGATOR_CONNECT_SERVICE_PORT_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698