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

Side by Side Diff: Source/web/WebSharedWorkerImpl.h

Issue 663893002: Clean up forward declarations in Source/web (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | « Source/web/WebRemoteFrameImpl.h ('k') | Source/web/WebTextCheckingCompletionImpl.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 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "public/web/WebDevToolsAgentClient.h" 42 #include "public/web/WebDevToolsAgentClient.h"
43 #include "public/web/WebFrameClient.h" 43 #include "public/web/WebFrameClient.h"
44 #include "public/web/WebSharedWorkerClient.h" 44 #include "public/web/WebSharedWorkerClient.h"
45 #include "wtf/PassOwnPtr.h" 45 #include "wtf/PassOwnPtr.h"
46 #include "wtf/RefPtr.h" 46 #include "wtf/RefPtr.h"
47 #include "wtf/WeakPtr.h" 47 #include "wtf/WeakPtr.h"
48 48
49 namespace blink { 49 namespace blink {
50 50
51 class ConsoleMessage; 51 class ConsoleMessage;
52 class ResourceResponse;
53 class WebApplicationCacheHost; 52 class WebApplicationCacheHost;
54 class WebApplicationCacheHostClient; 53 class WebApplicationCacheHostClient;
55 class WebWorkerClient;
56 class WebSecurityOrigin;
57 class WebString; 54 class WebString;
58 class WebURL; 55 class WebURL;
59 class WebView; 56 class WebView;
60 class WebWorker;
61 class WebSharedWorkerClient; 57 class WebSharedWorkerClient;
62 class WorkerInspectorProxy; 58 class WorkerInspectorProxy;
63 59
64 // This class is used by the worker process code to talk to the SharedWorker imp lementation. 60 // This class is used by the worker process code to talk to the SharedWorker imp lementation.
65 // It can't use it directly since it uses WebKit types, so this class converts t he data types. 61 // It can't use it directly since it uses WebKit types, so this class converts t he data types.
66 // When the SharedWorker object wants to call WorkerReportingProxy, this class w ill 62 // When the SharedWorker object wants to call WorkerReportingProxy, this class w ill
67 // convert to Chrome data types first and then call the supplied WebCommonWorker Client. 63 // convert to Chrome data types first and then call the supplied WebCommonWorker Client.
68 class WebSharedWorkerImpl final 64 class WebSharedWorkerImpl final
69 : public WorkerReportingProxy 65 : public WorkerReportingProxy
70 , public WorkerLoaderProxy 66 , public WorkerLoaderProxy
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 OwnPtr<Loader> m_mainScriptLoader; 159 OwnPtr<Loader> m_mainScriptLoader;
164 WebURL m_url; 160 WebURL m_url;
165 WebString m_name; 161 WebString m_name;
166 WebString m_contentSecurityPolicy; 162 WebString m_contentSecurityPolicy;
167 WebContentSecurityPolicyType m_policyType; 163 WebContentSecurityPolicyType m_policyType;
168 }; 164 };
169 165
170 } // namespace blink 166 } // namespace blink
171 167
172 #endif 168 #endif
OLDNEW
« no previous file with comments | « Source/web/WebRemoteFrameImpl.h ('k') | Source/web/WebTextCheckingCompletionImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698