diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-12 01:59:17 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-12 01:59:17 +0000 |
commit | 0ee57e2fd0130dea13c030e340c41f72a36840a5 (patch) | |
tree | 979d3d25bfcc6733fde72f97f99cf53085e7733f /content/public/common/show_desktop_notification_params.cc | |
parent | 455a6168fdb26900460987080579734103c96f6e (diff) | |
download | chromium_src-0ee57e2fd0130dea13c030e340c41f72a36840a5.zip chromium_src-0ee57e2fd0130dea13c030e340c41f72a36840a5.tar.gz chromium_src-0ee57e2fd0130dea13c030e340c41f72a36840a5.tar.bz2 |
Move the struct used when showing a desktop notification to content/public/common, so that chrome code doesn't include desktop_notification_messages.h which is an internal detail of content.
BUG=98716
Review URL: http://codereview.chromium.org/8511075
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109757 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/common/show_desktop_notification_params.cc')
-rw-r--r-- | content/public/common/show_desktop_notification_params.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/content/public/common/show_desktop_notification_params.cc b/content/public/common/show_desktop_notification_params.cc new file mode 100644 index 0000000..e93f7cc --- /dev/null +++ b/content/public/common/show_desktop_notification_params.cc @@ -0,0 +1,16 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "content/public/common/show_desktop_notification_params.h" + +namespace content { + +ShowDesktopNotificationHostMsgParams::ShowDesktopNotificationHostMsgParams() + : is_html(false), notification_id(0) { +} + +ShowDesktopNotificationHostMsgParams::~ShowDesktopNotificationHostMsgParams() { +} + +} // namespace content |