blob: 9aebbfd622f6c629cf122e4a79c73856598e1e45 [file] [log] [blame]
// Copyright 2014 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 HTMLImageFallbackHelper_h
#define HTMLImageFallbackHelper_h
#include "wtf/Allocator.h"
#include "wtf/PassRefPtr.h"
namespace blink {
class Element;
class ComputedStyle;
class HTMLImageFallbackHelper {
STATIC_ONLY(HTMLImageFallbackHelper);
public:
static void createAltTextShadowTree(Element&);
static PassRefPtr<ComputedStyle> customStyleForAltText(Element&, PassRefPtr<ComputedStyle> newStyle);
};
} // namespace blink
#endif // HTMLImageFallbackHelper_h