diff options
Diffstat (limited to 'testing/embedder_test_mock_delegate.h')
-rw-r--r-- | testing/embedder_test_mock_delegate.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/embedder_test_mock_delegate.h b/testing/embedder_test_mock_delegate.h new file mode 100644 index 0000000000..526e11774e --- /dev/null +++ b/testing/embedder_test_mock_delegate.h @@ -0,0 +1,19 @@ +// 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 "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)); +}; + +#endif // TESTING_EMBEDDER_TEST_MOCK_DELEGATE_H_ + |