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

Unified Diff: services/files/files_app.h

Issue 1987363004: Build libraries for a number of services. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: remove unnecessary imports Created 4 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 | « services/files/BUILD.gn ('k') | services/files/files_app.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/files/files_app.h
diff --git a/services/files/files_app.h b/services/files/files_app.h
new file mode 100644
index 0000000000000000000000000000000000000000..3bd781004034c3eb8c0e433e6096ae524afe934f
--- /dev/null
+++ b/services/files/files_app.h
@@ -0,0 +1,31 @@
+// Copyright 2016 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 SERVICES_FILES_FILES_APP_H_
+#define SERVICES_FILES_FILES_APP_H_
+
+#include "base/macros.h"
+#include "mojo/public/cpp/application/application_delegate.h"
+#include "mojo/public/cpp/application/service_provider_impl.h"
+
+namespace mojo {
+namespace files {
+
+class FilesApp : public ApplicationDelegate {
+ public:
+ FilesApp();
+ ~FilesApp() override;
+
+ private:
+ // |ApplicationDelegate| override:
+ bool ConfigureIncomingConnection(
+ ServiceProviderImpl* service_provider_impl) override;
+
+ DISALLOW_COPY_AND_ASSIGN(FilesApp);
+};
+
+} // namespace files
+} // namespace mojo
+
+#endif // SERVICES_FILES_FILES_APP_H_
« no previous file with comments | « services/files/BUILD.gn ('k') | services/files/files_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698