blob: 4f9d6b1bbc68760b192dcbd9c9d7c020e8730bc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (c) 2012 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 UI_GFX_IMAGE_IMAGE_SKIA_REP_H_
#define UI_GFX_IMAGE_IMAGE_SKIA_REP_H_
#include "build/build_config.h"
#if defined(OS_IOS)
#include "ui/gfx/image/image_skia_rep_ios.h"
#else
#include "ui/gfx/image/image_skia_rep_default.h"
#endif // defined(OS_IOS)
#endif // UI_GFX_IMAGE_IMAGE_SKIA_REP_H_
|