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

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

Issue 10700202: Add Android stub implementation for AppNotifyChannelUI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added a Create method to the interface Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
(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 #ifndef CHROME_BROWSER_EXTENSIONS_APP_NOTIFY_CHANNEL_UI_ANDROID_H_
6 #define CHROME_BROWSER_EXTENSIONS_APP_NOTIFY_CHANNEL_UI_ANDROID_H_
7
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "chrome/browser/extensions/app_notify_channel_ui.h"
11
12 class AppNotifyChannelUIAndroid : public AppNotifyChannelUI {
13 public:
14 AppNotifyChannelUIAndroid();
15 virtual ~AppNotifyChannelUIAndroid();
16
17 // AppNotifyChannelUI.
18 virtual void PromptSyncSetup(AppNotifyChannelUI::Delegate* delegate) OVERRIDE;
19
20 DISALLOW_COPY_AND_ASSIGN(AppNotifyChannelUIAndroid);
21 };
22
23 #endif // CHROME_BROWSER_EXTENSIONS_APP_NOTIFY_CHANNEL_UI_ANDROID_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/app_notify_channel_ui.cc ('k') | chrome/browser/extensions/app_notify_channel_ui_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698