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

Side by Side Diff: Source/web/WebEmbeddedWorkerImpl.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/WebDevToolsAgentPrivate.h ('k') | Source/web/WebLocalFrameImpl.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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 25 matching lines...) Expand all
36 #include "public/web/WebEmbeddedWorker.h" 36 #include "public/web/WebEmbeddedWorker.h"
37 #include "public/web/WebEmbeddedWorkerStartData.h" 37 #include "public/web/WebEmbeddedWorkerStartData.h"
38 #include "public/web/WebFrameClient.h" 38 #include "public/web/WebFrameClient.h"
39 39
40 namespace blink { 40 namespace blink {
41 41
42 class ServiceWorkerGlobalScopeProxy; 42 class ServiceWorkerGlobalScopeProxy;
43 class WebServiceWorkerNetworkProvider; 43 class WebServiceWorkerNetworkProvider;
44 class WebView; 44 class WebView;
45 class WorkerInspectorProxy; 45 class WorkerInspectorProxy;
46 class WorkerScriptLoader;
47 class WorkerThread; 46 class WorkerThread;
48 47
49 class WebEmbeddedWorkerImpl final 48 class WebEmbeddedWorkerImpl final
50 : public WebEmbeddedWorker 49 : public WebEmbeddedWorker
51 , public WebFrameClient 50 , public WebFrameClient
52 , public WebDevToolsAgentClient { 51 , public WebDevToolsAgentClient {
53 WTF_MAKE_NONCOPYABLE(WebEmbeddedWorkerImpl); 52 WTF_MAKE_NONCOPYABLE(WebEmbeddedWorkerImpl);
54 public: 53 public:
55 WebEmbeddedWorkerImpl( 54 WebEmbeddedWorkerImpl(
56 PassOwnPtr<WebServiceWorkerContextClient>, 55 PassOwnPtr<WebServiceWorkerContextClient>,
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 DoPauseAfterDownload, 134 DoPauseAfterDownload,
136 IsPausedAfterDownload 135 IsPausedAfterDownload
137 } m_pauseAfterDownloadState; 136 } m_pauseAfterDownloadState;
138 137
139 WaitingForDebuggerState m_waitingForDebuggerState; 138 WaitingForDebuggerState m_waitingForDebuggerState;
140 }; 139 };
141 140
142 } // namespace blink 141 } // namespace blink
143 142
144 #endif // WebEmbeddedWorkerImpl_h 143 #endif // WebEmbeddedWorkerImpl_h
OLDNEW
« no previous file with comments | « Source/web/WebDevToolsAgentPrivate.h ('k') | Source/web/WebLocalFrameImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698