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

Unified Diff: chrome/browser/extensions/process_map.cc

Issue 8771061: Remove explicit marker from ProcessMap. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/process_map.cc
diff --git a/chrome/browser/extensions/process_map.cc b/chrome/browser/extensions/process_map.cc
index 73bace9a28965bd360ba0a5577b408108086577d..267f705bc877d665041e6565efdff140be65fd21 100644
--- a/chrome/browser/extensions/process_map.cc
+++ b/chrome/browser/extensions/process_map.cc
@@ -11,7 +11,9 @@ struct ProcessMap::Item {
Item() {
}
- explicit Item(const ProcessMap::Item& other)
+ // Purposely implicit constructor needed on older gcc's. See:
+ // http://codereview.chromium.org/8769022/
+ Item(const ProcessMap::Item& other)
: extension_id(other.extension_id),
process_id(other.process_id),
site_instance_id(other.site_instance_id) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698