• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2020 The ANGLE Project 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.
4"""ANGLE implementation of //build/skia_gold_common/skia_gold_session_manager.py."""
5
6from skia_gold_common import skia_gold_session_manager as sgsm
7from .angle_skia_gold_session import ANGLESkiaGoldSession
8
9
10class ANGLESkiaGoldSessionManager(sgsm.SkiaGoldSessionManager):
11
12    @staticmethod
13    def _GetDefaultInstance():
14        return 'angle'
15
16    @staticmethod
17    def GetSessionClass():
18        return ANGLESkiaGoldSession
19