Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(452)

Side by Side Diff: chrome/browser/extensions/app_notify_channel_ui_android.cc

Issue 10830036: Moved the AppNotification system into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Latest master for cq Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #include "chrome/browser/extensions/app_notify_channel_ui_android.h" 5 #include "chrome/browser/extensions/app_notify_channel_ui_android.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/browser/profiles/profile.h" 8 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/browser/ui/tab_contents/tab_contents.h" 9 #include "chrome/browser/ui/tab_contents/tab_contents.h"
10 10
11 namespace extensions {
12
11 AppNotifyChannelUIAndroid::AppNotifyChannelUIAndroid() {} 13 AppNotifyChannelUIAndroid::AppNotifyChannelUIAndroid() {}
12 14
13 AppNotifyChannelUIAndroid::~AppNotifyChannelUIAndroid() { 15 AppNotifyChannelUIAndroid::~AppNotifyChannelUIAndroid() {
14 } 16 }
15 17
16 // static 18 // static
17 AppNotifyChannelUI* AppNotifyChannelUI::Create(Profile* profile, 19 AppNotifyChannelUI* AppNotifyChannelUI::Create(Profile* profile,
18 TabContents* tab_contents, 20 TabContents* tab_contents,
19 const std::string& app_name, 21 const std::string& app_name,
20 AppNotifyChannelUI::UIType ui_type) { 22 AppNotifyChannelUI::UIType ui_type) {
21 return new AppNotifyChannelUIAndroid(); 23 return new AppNotifyChannelUIAndroid();
22 } 24 }
23 25
24 void AppNotifyChannelUIAndroid::PromptSyncSetup( 26 void AppNotifyChannelUIAndroid::PromptSyncSetup(
25 AppNotifyChannelUI::Delegate* delegate) { 27 AppNotifyChannelUI::Delegate* delegate) {
26 NOTIMPLEMENTED(); 28 NOTIMPLEMENTED();
27 } 29 }
30
31 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/app_notify_channel_ui_android.h ('k') | chrome/browser/extensions/app_notify_channel_ui_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698