Chromium Code Reviews| Index: chrome/browser/ui/message_center/message_center_util.h |
| diff --git a/chrome/browser/ui/message_center/message_center_util.h b/chrome/browser/ui/message_center/message_center_util.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..40edb9a373e1efa1464d68521ad636537140bed0 |
| --- /dev/null |
| +++ b/chrome/browser/ui/message_center/message_center_util.h |
| @@ -0,0 +1,19 @@ |
| +// Copyright 2013 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. |
| + |
| +#ifndef CHROME_BROWSER_UI_MESSAGE_CENTER_MESSAGE_CENTER_UTIL_H_ |
| +#define CHROME_BROWSER_UI_MESSAGE_CENTER_MESSAGE_CENTER_UTIL_H_ |
| + |
| +namespace ui { |
| +class MessageCenterTrayDelegate; |
| +} |
| + |
| +namespace chrome { |
|
Pete Williamson
2013/01/23 19:52:16
Is this the right namespace? That seems like a pr
dewittj
2013/01/23 22:07:51
This was modeled on app_list_util.h, but the file
|
| + |
| + // Show the message center tray widget. |
|
sky
2013/01/18 21:30:56
Comment is wrong.
dewittj
2013/01/20 19:02:06
File gone.
|
| + ui::MessageCenterTrayDelegate* GetMessageCenterTray(); |
|
sky
2013/01/18 21:30:56
Don't indent this.
dewittj
2013/01/20 19:02:06
File gone.
|
| + |
| +} // namespace chrome |
| + |
| +#endif // CHROME_BROWSER_UI_MESSAGE_CENTER_MESSAGE_CENTER_UTIL_H_ |