mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
b9cfdbdbdc
- Bug 1159409 - (Part 1-) - Remove Init() from the Image interface. r=tn (0b663ee45) - Bug 1159409 - (Part 2) - Remove ProgressTrackerInit and register Images with a ProgressTracker in ImageFactory. r=tn (a24d4e849) - Bug 1179909: Refactor stable state handling. r=smaug This is motivated by three separate but related problems: (0ead73dbd) - remove mPreemptingRunnableInfos of PM which I couldn't trace in FF (96474c90a) - Bug 1179909: Build fix. r=me CLOSED TREE (5d35a65d5) - Bug 1144418 - target events for text nodes in shadow dom to the nearest element in the flattened tree. r=wchen (26c0eb8b2) - Bug 853889 - Check single-box orientaton in _cairo_bentley_ottmann_tessellate_rectangular_traps and _cairo_bentley_ottmann_tessellate_boxes. r=jmuizelaar (a13abee2f) - Bug 1143303 - extend D2D circle workaround to work for small circles. r=bas (1ccb1c0c1)
96 lines
3.2 KiB
C++
96 lines
3.2 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef mozilla_image_ImageFactory_h
|
|
#define mozilla_image_ImageFactory_h
|
|
|
|
#include "nsCOMPtr.h"
|
|
#include "nsProxyRelease.h"
|
|
|
|
class nsCString;
|
|
class nsIRequest;
|
|
|
|
namespace mozilla {
|
|
namespace image {
|
|
|
|
class Image;
|
|
class ImageURL;
|
|
class MultipartImage;
|
|
class ProgressTracker;
|
|
|
|
class ImageFactory
|
|
{
|
|
public:
|
|
/**
|
|
* Registers vars with Preferences. Should only be called on the main thread.
|
|
*/
|
|
static void Initialize();
|
|
|
|
/**
|
|
* Creates a new image with the given properties.
|
|
* Can be called on or off the main thread.
|
|
*
|
|
* @param aRequest The associated request.
|
|
* @param aProgressTracker A status tracker for the image to use.
|
|
* @param aMimeType The mimetype of the image.
|
|
* @param aURI The URI of the image.
|
|
* @param aIsMultiPart Whether the image is part of a multipart request.
|
|
* @param aInnerWindowId The window this image belongs to.
|
|
*/
|
|
static already_AddRefed<Image> CreateImage(nsIRequest* aRequest,
|
|
ProgressTracker* aProgressTracker,
|
|
const nsCString& aMimeType,
|
|
ImageURL* aURI,
|
|
bool aIsMultiPart,
|
|
uint32_t aInnerWindowId);
|
|
/**
|
|
* Creates a new image which isn't associated with a URI or loaded through
|
|
* the usual image loading mechanism.
|
|
*
|
|
* @param aMimeType The mimetype of the image.
|
|
*/
|
|
static already_AddRefed<Image>
|
|
CreateAnonymousImage(const nsCString& aMimeType);
|
|
|
|
/**
|
|
* Creates a new multipart/x-mixed-replace image wrapper, and initializes it
|
|
* with the first part. Subsequent parts should be passed to the existing
|
|
* MultipartImage via MultipartImage::BeginTransitionToPart().
|
|
*
|
|
* @param aFirstPart An image containing the first part of the multipart
|
|
* stream.
|
|
* @param aProgressTracker A progress tracker for the multipart image.
|
|
*/
|
|
static already_AddRefed<MultipartImage>
|
|
CreateMultipartImage(Image* aFirstPart, ProgressTracker* aProgressTracker);
|
|
|
|
private:
|
|
// Factory functions that create specific types of image containers.
|
|
static already_AddRefed<Image>
|
|
CreateRasterImage(nsIRequest* aRequest,
|
|
ProgressTracker* aProgressTracker,
|
|
const nsCString& aMimeType,
|
|
ImageURL* aURI,
|
|
uint32_t aImageFlags,
|
|
uint32_t aInnerWindowId);
|
|
|
|
static already_AddRefed<Image>
|
|
CreateVectorImage(nsIRequest* aRequest,
|
|
ProgressTracker* aProgressTracker,
|
|
const nsCString& aMimeType,
|
|
ImageURL* aURI,
|
|
uint32_t aImageFlags,
|
|
uint32_t aInnerWindowId);
|
|
|
|
// This is a static factory class, so disallow instantiation.
|
|
virtual ~ImageFactory() = 0;
|
|
};
|
|
|
|
} // namespace image
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_image_ImageFactory_h
|