Commit 46a8fa93 authored by yusukes's avatar yusukes Committed by Commit bot

Add a comment to ActivityName::activity_name.

This reflects the change in ag/1087804.

BUG=616159

Review-Url: https://codereview.chromium.org/2026913002
Cr-Commit-Position: refs/heads/master@{#396947}
parent aaeb88a4
...@@ -34,9 +34,13 @@ class ActivityIconLoader : public base::RefCounted<ActivityIconLoader> { ...@@ -34,9 +34,13 @@ class ActivityIconLoader : public base::RefCounted<ActivityIconLoader> {
ActivityName(const std::string& package_name, ActivityName(const std::string& package_name,
const std::string& activity_name); const std::string& activity_name);
bool operator<(const ActivityName& other) const; bool operator<(const ActivityName& other) const;
// TODO(yusukes): Add const to these variables later. At this point, // TODO(yusukes): Add const to these variables later. At this point,
// doing so seems to confuse g++ 4.6 on builders. // doing so seems to confuse g++ 4.6 on builders.
std::string package_name; std::string package_name;
// Can be empty. When |activity_name| is empty, the loader tries to fetch
// the package's default icon.
std::string activity_name; std::string activity_name;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment