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

Side by Side Diff: content/renderer/shared_worker/embedded_shared_worker_stub.h

Issue 1547073003: Switch to standard integer types in content/renderer/. (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_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_ 5 #ifndef CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_
6 #define CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_ 6 #define CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/macros.h"
10 #include "content/child/child_message_filter.h" 11 #include "content/child/child_message_filter.h"
11 #include "content/child/scoped_child_process_reference.h" 12 #include "content/child/scoped_child_process_reference.h"
12 #include "ipc/ipc_listener.h" 13 #include "ipc/ipc_listener.h"
13 #include "third_party/WebKit/public/platform/WebString.h" 14 #include "third_party/WebKit/public/platform/WebString.h"
14 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h" 15 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h"
15 #include "third_party/WebKit/public/web/WebSharedWorkerClient.h" 16 #include "third_party/WebKit/public/web/WebSharedWorkerClient.h"
16 #include "url/gurl.h" 17 #include "url/gurl.h"
17 18
18 namespace blink { 19 namespace blink {
19 class WebApplicationCacheHost; 20 class WebApplicationCacheHost;
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 PendingChannelList pending_channels_; 99 PendingChannelList pending_channels_;
99 100
100 ScopedChildProcessReference process_ref_; 101 ScopedChildProcessReference process_ref_;
101 WebApplicationCacheHostImpl* app_cache_host_ = nullptr; 102 WebApplicationCacheHostImpl* app_cache_host_ = nullptr;
102 DISALLOW_COPY_AND_ASSIGN(EmbeddedSharedWorkerStub); 103 DISALLOW_COPY_AND_ASSIGN(EmbeddedSharedWorkerStub);
103 }; 104 };
104 105
105 } // namespace content 106 } // namespace content
106 107
107 #endif // CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_ 108 #endif // CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698