#ifndef ANDROID_WEBVIEW_COMMON_GFX_AW_GR_CONTEXT_OPTIONS_PROVIDER_H_
#define ANDROID_WEBVIEW_COMMON_GFX_AW_GR_CONTEXT_OPTIONS_PROVIDER_H_
#include "gpu/command_buffer/service/shared_context_state.h"
namespace android_webview {
class AwGrContextOptionsProvider
: public gpu::SharedContextState::GrContextOptionsProvider {
public:
AwGrContextOptionsProvider() = default;
virtual ~AwGrContextOptionsProvider() = default;
void SetCustomGrContextOptions(GrContextOptions& options) const override;
};
}
#endif