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

Side by Side Diff: public/testing/WebTestInterfaces.h

Issue 19885002: WebCrypto: Add interfaces for importKey(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase and rename Interface --> Private 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 | « public/platform/WebCryptoKey.h ('k') | no next file » | 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 18 matching lines...) Expand all
29 */ 29 */
30 30
31 #ifndef WebTestInterfaces_h 31 #ifndef WebTestInterfaces_h
32 #define WebTestInterfaces_h 32 #define WebTestInterfaces_h
33 33
34 #include "WebTestCommon.h" 34 #include "WebTestCommon.h"
35 #include <memory> 35 #include <memory>
36 36
37 namespace WebKit { 37 namespace WebKit {
38 class WebAudioDevice; 38 class WebAudioDevice;
39 class WebCrypto;
39 class WebFrame; 40 class WebFrame;
40 class WebMediaStreamCenter; 41 class WebMediaStreamCenter;
41 class WebMediaStreamCenterClient; 42 class WebMediaStreamCenterClient;
42 class WebMIDIAccessor; 43 class WebMIDIAccessor;
43 class WebMIDIAccessorClient; 44 class WebMIDIAccessorClient;
44 class WebRTCPeerConnectionHandler; 45 class WebRTCPeerConnectionHandler;
45 class WebRTCPeerConnectionHandlerClient; 46 class WebRTCPeerConnectionHandlerClient;
46 class WebThemeEngine; 47 class WebThemeEngine;
47 class WebURL; 48 class WebURL;
48 class WebView; 49 class WebView;
(...skipping 21 matching lines...) Expand all
70 WebTestRunner* testRunner(); 71 WebTestRunner* testRunner();
71 WebKit::WebThemeEngine* themeEngine(); 72 WebKit::WebThemeEngine* themeEngine();
72 73
73 WebKit::WebMediaStreamCenter* createMediaStreamCenter(WebKit::WebMediaStream CenterClient*); 74 WebKit::WebMediaStreamCenter* createMediaStreamCenter(WebKit::WebMediaStream CenterClient*);
74 WebKit::WebRTCPeerConnectionHandler* createWebRTCPeerConnectionHandler(WebKi t::WebRTCPeerConnectionHandlerClient*); 75 WebKit::WebRTCPeerConnectionHandler* createWebRTCPeerConnectionHandler(WebKi t::WebRTCPeerConnectionHandlerClient*);
75 76
76 WebKit::WebMIDIAccessor* createMIDIAccessor(WebKit::WebMIDIAccessorClient*); 77 WebKit::WebMIDIAccessor* createMIDIAccessor(WebKit::WebMIDIAccessorClient*);
77 78
78 WebKit::WebAudioDevice* createAudioDevice(double sampleRate); 79 WebKit::WebAudioDevice* createAudioDevice(double sampleRate);
79 80
81 WebKit::WebCrypto* crypto();
82
80 #if WEBTESTRUNNER_IMPLEMENTATION 83 #if WEBTESTRUNNER_IMPLEMENTATION
81 TestInterfaces* testInterfaces(); 84 TestInterfaces* testInterfaces();
82 #endif 85 #endif
83 86
84 private: 87 private:
85 std::auto_ptr<TestInterfaces> m_interfaces; 88 std::auto_ptr<TestInterfaces> m_interfaces;
86 }; 89 };
87 90
88 } 91 }
89 92
90 #endif // WebTestInterfaces_h 93 #endif // WebTestInterfaces_h
OLDNEW
« no previous file with comments | « public/platform/WebCryptoKey.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698