image_analysis_state.h 420 B

123456789101112131415161718
  1. // Copyright 2017 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.
  4. #ifndef CC_PAINT_IMAGE_ANALYSIS_STATE_H_
  5. #define CC_PAINT_IMAGE_ANALYSIS_STATE_H_
  6. namespace cc {
  7. enum class ImageAnalysisState {
  8. kNoAnalysis,
  9. kAnimatedImages,
  10. kNoAnimatedImages,
  11. };
  12. } // namespace cc
  13. #endif // CC_PAINT_IMAGE_ANALYSIS_STATE_H_