| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
| 3 * Copyright (C) 2009 Torch Mobile, Inc. http://www.torchmobile.com/ | 3 * Copyright (C) 2009 Torch Mobile, Inc. http://www.torchmobile.com/ |
| 4 * Copyright (C) 2010 Google Inc. All Rights Reserved. | 4 * Copyright (C) 2010 Google Inc. All Rights Reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 mediaValues = givenMediaValues; | 681 mediaValues = givenMediaValues; |
| 682 else | 682 else |
| 683 mediaValues = MediaValuesCached::create(*document); | 683 mediaValues = MediaValuesCached::create(*document); |
| 684 ASSERT(mediaValues->isSafeToSendToAnotherThread()); | 684 ASSERT(mediaValues->isSafeToSendToAnotherThread()); |
| 685 defaultViewportMinWidth = document->viewportDefaultMinWidth(); | 685 defaultViewportMinWidth = document->viewportDefaultMinWidth(); |
| 686 viewportMetaZeroValuesQuirk = document->settings() && document->settings()->
viewportMetaZeroValuesQuirk(); | 686 viewportMetaZeroValuesQuirk = document->settings() && document->settings()->
viewportMetaZeroValuesQuirk(); |
| 687 viewportMetaEnabled = document->settings() && document->settings()->viewport
MetaEnabled(); | 687 viewportMetaEnabled = document->settings() && document->settings()->viewport
MetaEnabled(); |
| 688 referrerPolicy = ReferrerPolicyDefault; | 688 referrerPolicy = ReferrerPolicyDefault; |
| 689 } | 689 } |
| 690 | 690 |
| 691 } | 691 } // namespace blink |
| OLD | NEW |