OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_RENDERER_WORKER_CONTENT_SETTINGS_CLIENT_PROXY_H_ | 5 #ifndef CHROME_RENDERER_WORKER_CONTENT_SETTINGS_CLIENT_PROXY_H_ |
6 #define CHROME_RENDERER_WORKER_CONTENT_SETTINGS_CLIENT_PROXY_H_ | 6 #define CHROME_RENDERER_WORKER_CONTENT_SETTINGS_CLIENT_PROXY_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/macros.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "third_party/WebKit/public/web/WebWorkerContentSettingsClientProxy.h" | 10 #include "third_party/WebKit/public/web/WebWorkerContentSettingsClientProxy.h" |
11 #include "url/gurl.h" | 11 #include "url/gurl.h" |
12 | 12 |
13 namespace IPC { | 13 namespace IPC { |
14 class SyncMessageFilter; | 14 class SyncMessageFilter; |
15 } | 15 } |
16 | 16 |
17 namespace content { | 17 namespace content { |
18 class RenderFrame; | 18 class RenderFrame; |
(...skipping 24 matching lines...) Expand all Loading... |
43 const int routing_id_; | 43 const int routing_id_; |
44 bool is_unique_origin_; | 44 bool is_unique_origin_; |
45 GURL document_origin_url_; | 45 GURL document_origin_url_; |
46 GURL top_frame_origin_url_; | 46 GURL top_frame_origin_url_; |
47 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; | 47 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; |
48 | 48 |
49 DISALLOW_COPY_AND_ASSIGN(WorkerContentSettingsClientProxy); | 49 DISALLOW_COPY_AND_ASSIGN(WorkerContentSettingsClientProxy); |
50 }; | 50 }; |
51 | 51 |
52 #endif // CHROME_RENDERER_WORKER_CONTENT_SETTINGS_CLIENT_PROXY_H_ | 52 #endif // CHROME_RENDERER_WORKER_CONTENT_SETTINGS_CLIENT_PROXY_H_ |
OLD | NEW |