| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_NOTIFICATIONS_BALLOON_VIEW_HOST_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_NOTIFICATIONS_BALLOON_VIEW_HOST_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_NOTIFICATIONS_BALLOON_VIEW_HOST_H_ | 6 #define CHROME_BROWSER_CHROMEOS_NOTIFICATIONS_BALLOON_VIEW_HOST_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/views/notifications/balloon_view_host.h" | 9 #include "chrome/browser/ui/views/notifications/balloon_view_host.h" |
| 10 | 10 |
| 11 #include <map> | 11 #include <map> |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "base/callback.h" | 14 #include "base/callback.h" |
| 15 #include "gfx/native_widget_types.h" | 15 #include "gfx/native_widget_types.h" |
| 16 | 16 |
| 17 class ListValue; | 17 class ListValue; |
| 18 class GURL; | 18 class GURL; |
| 19 | 19 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 40 // A map of message name -> message handling callback. | 40 // A map of message name -> message handling callback. |
| 41 typedef std::map<std::string, MessageCallback*> MessageCallbackMap; | 41 typedef std::map<std::string, MessageCallback*> MessageCallbackMap; |
| 42 MessageCallbackMap message_callbacks_; | 42 MessageCallbackMap message_callbacks_; |
| 43 | 43 |
| 44 DISALLOW_COPY_AND_ASSIGN(BalloonViewHost); | 44 DISALLOW_COPY_AND_ASSIGN(BalloonViewHost); |
| 45 }; | 45 }; |
| 46 | 46 |
| 47 } // namespace chromeos | 47 } // namespace chromeos |
| 48 | 48 |
| 49 #endif // CHROME_BROWSER_CHROMEOS_NOTIFICATIONS_BALLOON_VIEW_HOST_H_ | 49 #endif // CHROME_BROWSER_CHROMEOS_NOTIFICATIONS_BALLOON_VIEW_HOST_H_ |
| OLD | NEW |