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

Unified Diff: blimp/client/core/feedback/blimp_feedback_data.h

Issue 2403913003: Add user name in the feedback data. (Closed)
Patch Set: Version check only in Java layer. Created 4 years, 1 month 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: blimp/client/core/feedback/blimp_feedback_data.h
diff --git a/blimp/client/core/feedback/blimp_feedback_data.h b/blimp/client/core/feedback/blimp_feedback_data.h
index ad1a9a5366c89fc1dd3663e20ff0ed8e4cd5dc05..b59a7fa7177b6a6a84efe7560b04ef4e1978b539 100644
--- a/blimp/client/core/feedback/blimp_feedback_data.h
+++ b/blimp/client/core/feedback/blimp_feedback_data.h
@@ -16,10 +16,13 @@ class BlimpContentsManager;
extern const char kFeedbackSupportedKey[];
// Denotes whether there exists any visible BlimpContents.
extern const char kFeedbackHasVisibleBlimpContents[];
+// Denotes the user name for the current logged in user.
+extern const char kFeedbackUserNameKey[];
// Creates a data object containing data about Blimp to be used for feedback.
std::unordered_map<std::string, std::string> CreateBlimpFeedbackData(
- BlimpContentsManager* blimp_contents_manager);
+ BlimpContentsManager* blimp_contents_manager,
+ const std::string& username);
} // namespace client
} // namespace blimp

Powered by Google App Engine
This is Rietveld 408576698