OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_EXTENSIONS_APP_NOTIFY_CHANNEL_UI_ANDROID_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_APP_NOTIFY_CHANNEL_UI_ANDROID_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_APP_NOTIFY_CHANNEL_UI_ANDROID_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_APP_NOTIFY_CHANNEL_UI_ANDROID_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "chrome/browser/extensions/app_notify_channel_ui.h" | 10 #include "chrome/browser/extensions/app_notify_channel_ui.h" |
11 | 11 |
| 12 namespace extensions { |
| 13 |
12 class AppNotifyChannelUIAndroid : public AppNotifyChannelUI { | 14 class AppNotifyChannelUIAndroid : public AppNotifyChannelUI { |
13 public: | 15 public: |
14 AppNotifyChannelUIAndroid(); | 16 AppNotifyChannelUIAndroid(); |
15 virtual ~AppNotifyChannelUIAndroid(); | 17 virtual ~AppNotifyChannelUIAndroid(); |
16 | 18 |
17 // AppNotifyChannelUI. | 19 // AppNotifyChannelUI. |
18 virtual void PromptSyncSetup(AppNotifyChannelUI::Delegate* delegate) OVERRIDE; | 20 virtual void PromptSyncSetup(AppNotifyChannelUI::Delegate* delegate) OVERRIDE; |
19 | 21 |
20 DISALLOW_COPY_AND_ASSIGN(AppNotifyChannelUIAndroid); | 22 DISALLOW_COPY_AND_ASSIGN(AppNotifyChannelUIAndroid); |
21 }; | 23 }; |
22 | 24 |
| 25 } // namespace extensions |
| 26 |
23 #endif // CHROME_BROWSER_EXTENSIONS_APP_NOTIFY_CHANNEL_UI_ANDROID_H_ | 27 #endif // CHROME_BROWSER_EXTENSIONS_APP_NOTIFY_CHANNEL_UI_ANDROID_H_ |
OLD | NEW |