OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/browser/extensions/app_notify_channel_ui_android.h" | |
6 | |
7 #include "base/logging.h" | |
8 #include "chrome/browser/profiles/profile.h" | |
9 | |
10 namespace extensions { | |
11 | |
12 AppNotifyChannelUIAndroid::AppNotifyChannelUIAndroid() {} | |
13 | |
14 AppNotifyChannelUIAndroid::~AppNotifyChannelUIAndroid() { | |
15 } | |
16 | |
17 // static | |
18 AppNotifyChannelUI* AppNotifyChannelUI::Create(Profile* profile, | |
19 content::WebContents* web_contents, | |
20 const std::string& app_name, | |
21 AppNotifyChannelUI::UIType ui_type) { | |
22 return new AppNotifyChannelUIAndroid(); | |
23 } | |
24 | |
25 void AppNotifyChannelUIAndroid::PromptSyncSetup( | |
26 AppNotifyChannelUI::Delegate* delegate) { | |
27 NOTIMPLEMENTED(); | |
28 } | |
29 | |
30 } // namespace extensions | |
OLD | NEW |