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

Unified Diff: content/browser/media/webrtc_identity_store.cc

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: fix unit test 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
« no previous file with comments | « components/bitmap_uploader/bitmap_uploader.cc ('k') | content/browser/ppapi_plugin_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/media/webrtc_identity_store.cc
diff --git a/content/browser/media/webrtc_identity_store.cc b/content/browser/media/webrtc_identity_store.cc
index 6e9f66dc53d64a89764b2d3a011a15af78f21ebd..2ada2a15f40a358dc150d9c4f3bc5fb485f6ffba 100644
--- a/content/browser/media/webrtc_identity_store.cc
+++ b/content/browser/media/webrtc_identity_store.cc
@@ -137,7 +137,7 @@ class WebRTCIdentityRequestHandle {
WebRTCIdentityRequestHandle(
WebRTCIdentityStore* store,
const WebRTCIdentityStore::CompletionCallback& callback)
- : store_(store), request_(NULL), callback_(callback) {}
+ : request_(NULL), callback_(callback) {}
private:
friend class WebRTCIdentityStore;
@@ -172,7 +172,6 @@ class WebRTCIdentityRequestHandle {
base::ResetAndReturn(&callback_).Run(error, certificate, private_key);
}
- WebRTCIdentityStore* store_;
WebRTCIdentityRequest* request_;
WebRTCIdentityStore::CompletionCallback callback_;
« no previous file with comments | « components/bitmap_uploader/bitmap_uploader.cc ('k') | content/browser/ppapi_plugin_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698