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

Unified Diff: content/renderer/websharedworker_proxy.h

Issue 1575763002: Make `content` target build without unused data members on Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@use_disallow_copy_assign_linux_only
Patch Set: no deps Created 4 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/websharedworker_proxy.h
diff --git a/content/renderer/websharedworker_proxy.h b/content/renderer/websharedworker_proxy.h
index 276f956d2dad90ebb3164cc61b0be303086f477a..8ccc1f412d3d873f84b83037417b7fbcf21b51dd 100644
--- a/content/renderer/websharedworker_proxy.h
+++ b/content/renderer/websharedworker_proxy.h
@@ -64,22 +64,11 @@ class WebSharedWorkerProxy : public blink::WebSharedWorkerConnector,
// routing ids).
int route_id_;
- // The routing id for the RenderFrame that created this worker.
- int render_frame_route_id_;
-
MessageRouter* const router_;
- // ID of our parent document (used to shutdown workers when the parent
- // document is detached).
- unsigned long long document_id_;
-
// Stores messages that were sent before the StartWorkerContext message.
std::vector<IPC::Message*> queued_messages_;
- // The id for the placeholder worker instance we've stored on the
- // browser process (we need to pass this same route id back in when creating
- // the worker).
- int pending_route_id_;
ConnectListener* connect_listener_;
bool created_;

Powered by Google App Engine
This is Rietveld 408576698