| 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 #include "chrome/browser/ui/tab_contents/tab_contents.h" |
| 10 |
| 11 AppNotifyChannelUIAndroid::AppNotifyChannelUIAndroid() {} |
| 12 |
| 13 AppNotifyChannelUIAndroid::~AppNotifyChannelUIAndroid() { |
| 14 } |
| 15 |
| 16 // static |
| 17 AppNotifyChannelUI* AppNotifyChannelUI::Create(Profile* profile, |
| 18 TabContents* tab_contents, |
| 19 const std::string& app_name, |
| 20 AppNotifyChannelUI::UIType ui_type) { |
| 21 return new AppNotifyChannelUIAndroid(); |
| 22 } |
| 23 |
| 24 void AppNotifyChannelUIAndroid::PromptSyncSetup( |
| 25 AppNotifyChannelUI::Delegate* delegate) { |
| 26 NOTIMPLEMENTED(); |
| 27 } |
| OLD | NEW |