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

Unified Diff: athena/home/public/home_card.h

Issue 287253003: Add initial home card impl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « athena/home/public/DEPS ('k') | athena/main/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/home/public/home_card.h
diff --git a/athena/home/public/home_card.h b/athena/home/public/home_card.h
new file mode 100644
index 0000000000000000000000000000000000000000..b2b5dccbe0767d8d3e8d7891ecb10ff36c001c6c
--- /dev/null
+++ b/athena/home/public/home_card.h
@@ -0,0 +1,24 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ATHENA_HOME_PUBLIC_HOME_CARD_H_
+#define ATHENA_HOME_PUBLIC_HOME_CARD_H_
+
+#include "athena/athena_export.h"
+
+namespace athena {
+
+class ATHENA_EXPORT HomeCard {
+ public:
+ // Creates and deletes the singleton object of the HomeCard
+ // implementation.
+ static HomeCard* Create();
+ static void Shutdown();
+
+ virtual ~HomeCard() {}
+};
+
+} // namespace athena
+
+#endif // ATHENA_HOME_PUBLIC_HOME_CARD_H_
« no previous file with comments | « athena/home/public/DEPS ('k') | athena/main/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698