summaryrefslogtreecommitdiffstats
path: root/ppapi/tests/test_scrollbar.h
blob: 9a9bb1d133c2097de4b3cf750739432db25678c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright (c) 2010 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 PAPPI_TESTS_TEST_SCROLLBAR_H_
#define PAPPI_TESTS_TEST_SCROLLBAR_H_

#include "ppapi/cpp/dev/scrollbar_dev.h"
#include "ppapi/cpp/dev/widget_client_dev.h"
#include "ppapi/cpp/dev/widget_dev.h"
#include "ppapi/tests/test_case.h"

class TestScrollbar : public TestCase,
                      public pp::WidgetClient_Dev {
 public:
  TestScrollbar(TestingInstance* instance);

  // TestCase implementation.
  virtual void RunTest();

 private:
  std::string TestHandleEvent();

  virtual void InvalidateWidget(pp::Widget_Dev widget,
                                const pp::Rect& dirty_rect);
  virtual void ScrollbarValueChanged(pp::Scrollbar_Dev scrollbar,
                                     uint32_t value);

  pp::Scrollbar_Dev scrollbar_;
  bool scrollbar_value_changed_;
};

#endif  // PAPPI_TESTS_TEST_SCROLLBAR_H_