summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorantonm@chromium.org <antonm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-15 12:28:56 +0000
committerantonm@chromium.org <antonm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-15 12:28:56 +0000
commited8475e6904a519621ac51b8c245946b7d7fa020 (patch)
tree9bb2ceaa23857c1f968385bbb1e344300ee7ca4b /webkit
parent309394524706d6a6172abb012489664a8db9afa9 (diff)
downloadchromium_src-ed8475e6904a519621ac51b8c245946b7d7fa020.zip
chromium_src-ed8475e6904a519621ac51b8c245946b7d7fa020.tar.gz
chromium_src-ed8475e6904a519621ac51b8c245946b7d7fa020.tar.bz2
Migrate to WebNotification::iconURL in src/webkit/tools/test_shell/notification_presenter.cc
http://trac.webkit.org/changeset/57604 removed WebNotification::icon which broke the file above. Review URL: http://codereview.chromium.org/1642012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44646 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/tools/test_shell/notification_presenter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/tools/test_shell/notification_presenter.cc b/webkit/tools/test_shell/notification_presenter.cc
index 2727a55..2fc7a30 100644
--- a/webkit/tools/test_shell/notification_presenter.cc
+++ b/webkit/tools/test_shell/notification_presenter.cc
@@ -31,7 +31,7 @@ bool TestNotificationPresenter::show(const WebNotification& notification) {
notification.url().spec().data());
} else {
printf("DESKTOP NOTIFICATION: icon %s, title %s, text %s\n",
- notification.icon().utf8().data(),
+ notification.iconURL().spec().data(),
notification.title().utf8().data(),
notification.body().utf8().data());
}