summaryrefslogtreecommitdiffstats
path: root/chromecast/utility/cast_content_utility_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromecast/utility/cast_content_utility_client.h')
-rw-r--r--chromecast/utility/cast_content_utility_client.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/chromecast/utility/cast_content_utility_client.h b/chromecast/utility/cast_content_utility_client.h
new file mode 100644
index 0000000..bd5e0fd
--- /dev/null
+++ b/chromecast/utility/cast_content_utility_client.h
@@ -0,0 +1,28 @@
+// 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 CHROMECAST_UTILITY_CAST_CONTENT_UTILITY_CLIENT_H_
+#define CHROMECAST_UTILITY_CAST_CONTENT_UTILITY_CLIENT_H_
+
+#include "base/macros.h"
+#include "base/memory/scoped_ptr.h"
+#include "content/public/utility/content_utility_client.h"
+
+namespace chromecast {
+namespace shell {
+
+class CastContentUtilityClient : public content::ContentUtilityClient {
+ public:
+ static scoped_ptr<CastContentUtilityClient> Create();
+
+ CastContentUtilityClient() {}
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(CastContentUtilityClient);
+};
+
+} // namespace shell
+} // namespace chromecast
+
+#endif // CHROMECAST_UTILITY_CAST_CONTENT_UTILITY_CLIENT_H_