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

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

Issue 2623613004: SharedWorker: Move classes under content/renderer to content/renderer/shared_worker (Closed)
Patch Set: fix include guards Created 3 years, 11 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 (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 CONTENT_RENDERER_WEBSHAREDWORKER_PROXY_H_ 5 #ifndef CONTENT_RENDERER_SHARED_WORKER_WEBSHAREDWORKER_PROXY_H_
6 #define CONTENT_RENDERER_WEBSHAREDWORKER_PROXY_H_ 6 #define CONTENT_RENDERER_SHARED_WORKER_WEBSHAREDWORKER_PROXY_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "ipc/ipc_listener.h" 13 #include "ipc/ipc_listener.h"
14 #include "third_party/WebKit/public/web/WebSharedWorkerConnector.h" 14 #include "third_party/WebKit/public/web/WebSharedWorkerConnector.h"
15 #include "url/gurl.h" 15 #include "url/gurl.h"
16 16
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 std::vector<std::unique_ptr<IPC::Message>> queued_messages_; 62 std::vector<std::unique_ptr<IPC::Message>> queued_messages_;
63 63
64 ConnectListener* connect_listener_; 64 ConnectListener* connect_listener_;
65 bool created_; 65 bool created_;
66 66
67 DISALLOW_COPY_AND_ASSIGN(WebSharedWorkerProxy); 67 DISALLOW_COPY_AND_ASSIGN(WebSharedWorkerProxy);
68 }; 68 };
69 69
70 } // namespace content 70 } // namespace content
71 71
72 #endif // CONTENT_RENDERER_WEBSHAREDWORKER_PROXY_H_ 72 #endif // CONTENT_RENDERER_SHARED_WORKER_WEBSHAREDWORKER_PROXY_H_
OLDNEW
« no previous file with comments | « content/renderer/shared_worker/shared_worker_repository.cc ('k') | content/renderer/shared_worker/websharedworker_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698