#ifndef CONTENT_PUBLIC_TEST_RENDER_WIDGET_TEST_H_
#define CONTENT_PUBLIC_TEST_RENDER_WIDGET_TEST_H_
#include "base/basictypes.h"
#include "base/files/file_path.h"
#include "content/public/test/render_view_test.h"
class SkBitmap;
namespace gfx {
class Size;
}
namespace content {
class RenderWidgetTest : public RenderViewTest {
public:
RenderWidgetTest();
protected:
static const int kNumBytesPerPixel;
static const int kLargeWidth;
static const int kLargeHeight;
static const int kSmallWidth;
static const int kSmallHeight;
static const int kTextPositionX;
static const int kTextPositionY;
static const uint32 kRedARGB;
void TestOnResize();
};
}
#endif