Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(809)

Side by Side Diff: Source/modules/crypto/DOMWindowCrypto.cpp

Issue 18475002: WebCrypto: Add framework for AlgorithmIdentifier normalization. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rename verify --> verifySignature (because "verify" is a macro on Mac) Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/modules/crypto/CryptoOperation.idl ('k') | Source/modules/crypto/NormalizeAlgorithm.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « Source/modules/crypto/CryptoOperation.idl ('k') | Source/modules/crypto/NormalizeAlgorithm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698