diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-02-27 12:56:25 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-02-27 12:56:25 -0800 |
commit | 3d25502adc5ae37d1c3c74d367f16f770c465109 (patch) | |
tree | ba894fdc7bba7e097864898fa2f80318c9b17638 /testing/embedder_test_mock_delegate.h | |
parent | ec61a859344dc6d2a60e4cbcd1555e6d317f2add (diff) | |
download | pdfium-3d25502adc5ae37d1c3c74d367f16f770c465109.tar.xz |
Pull in gmock for standalone pdfium builds.
For chromium checkouts, the top-level gmock is used instead.
Verify build with a simple test that ensures neither mock
method is fired.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/955513009
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_ + |