OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 /* | 5 /* |
6 * Copyright (C) 2010 Apple Inc. All rights reserved. | 6 * Copyright (C) 2010 Apple Inc. All rights reserved. |
7 * | 7 * |
8 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
9 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
10 * are met: | 10 * are met: |
(...skipping 26 matching lines...) Expand all Loading... |
37 | 37 |
38 class DocumentOpenInDestroyStream : public PluginTest { | 38 class DocumentOpenInDestroyStream : public PluginTest { |
39 public: | 39 public: |
40 DocumentOpenInDestroyStream(NPP npp, const string& identifier) | 40 DocumentOpenInDestroyStream(NPP npp, const string& identifier) |
41 : PluginTest(npp, identifier) | 41 : PluginTest(npp, identifier) |
42 , m_shouldOpen(true) | 42 , m_shouldOpen(true) |
43 { | 43 { |
44 } | 44 } |
45 | 45 |
46 private: | 46 private: |
47 virtual NPError NPP_DestroyStream(NPStream*, NPReason) override | 47 NPError NPP_DestroyStream(NPStream*, NPReason) override { |
48 { | |
49 if (m_shouldOpen) { | 48 if (m_shouldOpen) { |
50 testDocumentOpen(m_npp); | 49 testDocumentOpen(m_npp); |
51 m_shouldOpen = false; | 50 m_shouldOpen = false; |
52 } | 51 } |
53 | 52 |
54 return NPERR_NO_ERROR; | 53 return NPERR_NO_ERROR; |
55 } | 54 } |
56 | 55 |
57 bool m_shouldOpen; | 56 bool m_shouldOpen; |
58 }; | 57 }; |
59 | 58 |
60 static PluginTest::Register<DocumentOpenInDestroyStream> documentOpenInDestroySt
ream("document-open-in-destroy-stream"); | 59 static PluginTest::Register<DocumentOpenInDestroyStream> documentOpenInDestroySt
ream("document-open-in-destroy-stream"); |
OLD | NEW |