| Index: content/public/browser/android/ui_resource_android.h
|
| diff --git a/content/public/browser/android/ui_resource_android.h b/content/public/browser/android/ui_resource_android.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..394228ecb703e546eebc3c9d0177e27be880f85c
|
| --- /dev/null
|
| +++ b/content/public/browser/android/ui_resource_android.h
|
| @@ -0,0 +1,20 @@
|
| +// 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 CONTENT_PUBLIC_BROWSER_ANDROID_UI_RESOURCE_ANDROID_H_
|
| +#define CONTENT_PUBLIC_BROWSER_ANDROID_UI_RESOURCE_ANDROID_H_
|
| +
|
| +#include "content/common/content_export.h"
|
| +#include "content/public/browser/android/ui_resource_client_android.h"
|
| +
|
| +namespace content {
|
| +
|
| +class CONTENT_EXPORT UIResourceAndroid : public UIResourceClientAndroid {
|
| + public:
|
| + virtual cc::UIResourceId id() = 0;
|
| +};
|
| +
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_PUBLIC_BROWSER_ANDROID_UI_RESOURCE_ANDROID_H_
|
|
|