blob: 5cf3b02c79e8d92c89fe7f8ffca7471c35bae2de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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 CHROME_RENDERER_PEPPER_PPB_FLASH_PRINT_IMPL_H_
#define CHROME_RENDERER_PEPPER_PPB_FLASH_PRINT_IMPL_H_
struct PPB_Flash_Print_1_0;
class PPB_Flash_Print_Impl {
public:
static const PPB_Flash_Print_1_0* GetInterface();
};
#endif // CHROME_RENDERER_PEPPER_PPB_FLASH_PRINT_IMPL_H_
|