You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
731 B
21 lines
731 B
// Copyright 2015 PDFium 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 TESTING_EMBEDDER_TEST_MOCK_DELEGATE_H_ |
|
#define TESTING_EMBEDDER_TEST_MOCK_DELEGATE_H_ |
|
|
|
#include "testing/embedder_test.h" |
|
#include "testing/gmock/include/gmock/gmock.h" |
|
|
|
class EmbedderTestMockDelegate : public EmbedderTest::Delegate { |
|
public: |
|
MOCK_METHOD1(UnsupportedHandler, void(int type)); |
|
MOCK_METHOD4( |
|
Alert, |
|
int(FPDF_WIDESTRING message, FPDF_WIDESTRING title, int type, int icon)); |
|
MOCK_METHOD2(SetTimer, int(int msecs, TimerCallback fn)); |
|
MOCK_METHOD1(KillTimer, void(int msecs)); |
|
}; |
|
|
|
#endif // TESTING_EMBEDDER_TEST_MOCK_DELEGATE_H_
|
|
|