| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 | 44 |
| 45 DOMWindowCrypto::~DOMWindowCrypto() | 45 DOMWindowCrypto::~DOMWindowCrypto() |
| 46 { | 46 { |
| 47 } | 47 } |
| 48 | 48 |
| 49 const char* DOMWindowCrypto::supplementName() | 49 const char* DOMWindowCrypto::supplementName() |
| 50 { | 50 { |
| 51 return "DOMWindowCrypto"; | 51 return "DOMWindowCrypto"; |
| 52 } | 52 } |
| 53 | 53 |
| 54 // static | |
| 55 DOMWindowCrypto* DOMWindowCrypto::from(DOMWindow* window) | 54 DOMWindowCrypto* DOMWindowCrypto::from(DOMWindow* window) |
| 56 { | 55 { |
| 57 DOMWindowCrypto* supplement = static_cast<DOMWindowCrypto*>(Supplement<DOMWi
ndow>::from(window, supplementName())); | 56 DOMWindowCrypto* supplement = static_cast<DOMWindowCrypto*>(Supplement<DOMWi
ndow>::from(window, supplementName())); |
| 58 if (!supplement) { | 57 if (!supplement) { |
| 59 supplement = new DOMWindowCrypto(window); | 58 supplement = new DOMWindowCrypto(window); |
| 60 provideTo(window, supplementName(), adoptPtr(supplement)); | 59 provideTo(window, supplementName(), adoptPtr(supplement)); |
| 61 } | 60 } |
| 62 return supplement; | 61 return supplement; |
| 63 } | 62 } |
| 64 | 63 |
| 65 // static | |
| 66 Crypto* DOMWindowCrypto::crypto(DOMWindow* window) | 64 Crypto* DOMWindowCrypto::crypto(DOMWindow* window) |
| 67 { | 65 { |
| 68 return DOMWindowCrypto::from(window)->crypto(); | 66 return DOMWindowCrypto::from(window)->crypto(); |
| 69 } | 67 } |
| 70 | 68 |
| 71 Crypto* DOMWindowCrypto::crypto() const | 69 Crypto* DOMWindowCrypto::crypto() const |
| 72 { | 70 { |
| 73 if (!m_crypto && frame()) | 71 if (!m_crypto && frame()) |
| 74 m_crypto = Crypto::create(); | 72 m_crypto = Crypto::create(); |
| 75 return m_crypto.get(); | 73 return m_crypto.get(); |
| 76 } | 74 } |
| 77 | 75 |
| 78 } // namespace WebCore | 76 } // namespace WebCore |
| OLD | NEW |