Rename soundName → sound.

This commit is contained in:
Charlie Hess 2017-08-17 17:28:14 -07:00
parent 0cfae1cc2b
commit 2b9b186fd1
No known key found for this signature in database
GPG key ID: 12C6D6B5324956AB
5 changed files with 11 additions and 11 deletions

View file

@ -64,7 +64,7 @@ class Notification : public mate::TrackableObject<Notification>,
void SetReplyPlaceholder(const base::string16& new_reply_placeholder);
void SetHasReply(bool new_has_reply);
void SetActions(const std::vector<brightray::NotificationAction>& actions);
void SetSoundName(const base::string16& sound_name);
void SetSoundName(const base::string16& sound);
private:
base::string16 title_;
@ -77,7 +77,7 @@ class Notification : public mate::TrackableObject<Notification>,
base::string16 reply_placeholder_;
bool has_reply_ = false;
std::vector<brightray::NotificationAction> actions_;
base::string16 sound_name_;
base::string16 sound_;
brightray::NotificationPresenter* presenter_;