| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium 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 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "core/include/fpdfapi/cpdf_array.h" | 7 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" |
| 8 #include "core/include/fpdfapi/cpdf_document.h" | 8 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
| 9 #include "core/include/fpdfdoc/fpdf_doc.h" | 9 #include "core/include/fpdfdoc/fpdf_doc.h" |
| 10 | 10 |
| 11 static int32_t FPDFDOC_OCG_FindGroup(const CPDF_Object* pObject, | 11 static int32_t FPDFDOC_OCG_FindGroup(const CPDF_Object* pObject, |
| 12 const CPDF_Dictionary* pGroupDict) { | 12 const CPDF_Dictionary* pGroupDict) { |
| 13 if (!pObject || !pGroupDict) | 13 if (!pObject || !pGroupDict) |
| 14 return -1; | 14 return -1; |
| 15 | 15 |
| 16 if (const CPDF_Array* pArray = pObject->AsArray()) { | 16 if (const CPDF_Array* pArray = pObject->AsArray()) { |
| 17 FX_DWORD dwCount = pArray->GetCount(); | 17 FX_DWORD dwCount = pArray->GetCount(); |
| 18 for (FX_DWORD i = 0; i < dwCount; i++) { | 18 for (FX_DWORD i = 0; i < dwCount; i++) { |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 } | 275 } |
| 276 CFX_ByteString csType = pOCGDict->GetStringBy("Type", "OCG"); | 276 CFX_ByteString csType = pOCGDict->GetStringBy("Type", "OCG"); |
| 277 if (csType == "OCG") { | 277 if (csType == "OCG") { |
| 278 return GetOCGVisible(pOCGDict); | 278 return GetOCGVisible(pOCGDict); |
| 279 } | 279 } |
| 280 return LoadOCMDState(pOCGDict, FALSE); | 280 return LoadOCMDState(pOCGDict, FALSE); |
| 281 } | 281 } |
| 282 void CPDF_OCContext::ResetOCContext() { | 282 void CPDF_OCContext::ResetOCContext() { |
| 283 m_OCGStates.clear(); | 283 m_OCGStates.clear(); |
| 284 } | 284 } |
| OLD | NEW |