Upstreaming browser/ui/uikit_ui_util from iOS.
[chromium-blink-merge.git] / chromecast / public / osd_plane_shlib.h
blob0ee170b019e06f4b0914b0b94d80578beeff6f5a
1 // Copyright 2015 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.
5 #ifndef CHROMECAST_PUBLIC_OSD_PLANE_SHLIB_H_
6 #define CHROMECAST_PUBLIC_OSD_PLANE_SHLIB_H_
8 #include <string>
9 #include <vector>
11 #include "chromecast_export.h"
13 namespace chromecast {
15 class OsdPlane;
17 // Entry point for loading OsdPlane from shared library.
18 class CHROMECAST_EXPORT OsdPlaneShlib {
19 public:
20 static OsdPlane* Create(const std::vector<std::string>& argv);
23 } // namespace chromecast
25 #endif // CHROMECAST_PUBLIC_OSD_PLANE_SHLIB_H_