OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Widget_Dev
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/ppapi/cpp/dev/
widget_dev.h
19
class
Widget_Dev
: public Resource {
22
Widget_Dev
() {}
24
explicit
Widget_Dev
(PP_Resource resource);
25
Widget_Dev
(const
Widget_Dev
& other);
widget_dev.cc
5
#include "ppapi/cpp/dev/
widget_dev
.h"
29
Widget_Dev
::
Widget_Dev
(PP_Resource resource) : Resource(resource) {
32
Widget_Dev
::
Widget_Dev
(const
Widget_Dev
& other) : Resource(other) {
35
bool
Widget_Dev
::Paint(const Rect& rect, ImageData* image) {
46
bool
Widget_Dev
::HandleEvent(const InputEvent& event) {
57
bool
Widget_Dev
::GetLocation(Rect* location) {
68
void
Widget_Dev
::SetLocation(const Rect& location)
[
all
...]
widget_client_dev.h
16
class
Widget_Dev
;
30
virtual void InvalidateWidget(
Widget_Dev
widget, const Rect& dirty_rect) = 0;
scrollbar_dev.h
9
#include "ppapi/cpp/dev/
widget_dev
.h"
16
class Scrollbar_Dev : public
Widget_Dev
{
scrollbar_dev.cc
24
Scrollbar_Dev::Scrollbar_Dev(PP_Resource resource) :
Widget_Dev
(resource) {
35
:
Widget_Dev
(other) {
widget_client_dev.cc
10
#include "ppapi/cpp/dev/
widget_dev
.h"
32
Widget_Dev
(widget_id), *dirty_rect);
/external/chromium_org/ppapi/tests/
test_scrollbar.h
10
#include "ppapi/cpp/dev/
widget_dev
.h"
25
virtual void InvalidateWidget(pp::
Widget_Dev
widget,
test_scrollbar.cc
53
void TestScrollbar::InvalidateWidget(pp::
Widget_Dev
widget,
Completed in 440 milliseconds