HomeSort by relevance Sort by last modified time
    Searched full:blink (Results 101 - 125 of 9052) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/page/
NetworkStateNotifierTest.cpp 41 namespace blink { namespace
46 : m_observedType(blink::ConnectionTypeNone)
51 virtual void connectionTypeChange(blink::WebConnectionType type)
60 blink::WebConnectionType observedType() const
77 blink::WebConnectionType m_observedType;
82 : public blink::WebThread::Task {
84 ExitTask(blink::WebThread* thread)
94 blink::WebThread* m_thread;
116 void setType(blink::WebConnectionType type)
120 blink::WebThread* thread = blink::Platform::current()->currentThread()
    [all...]
  /external/chromium_org/content/public/renderer/
render_view_observer.h 23 namespace blink { namespace
55 virtual void DidFinishDocumentLoad(blink::WebLocalFrame* frame) {}
56 virtual void DidFailLoad(blink::WebLocalFrame* frame,
57 const blink::WebURLError& error) {}
58 virtual void DidFinishLoad(blink::WebLocalFrame* frame) {}
59 virtual void DidStartProvisionalLoad(blink::WebLocalFrame* frame) {}
60 virtual void DidFailProvisionalLoad(blink::WebLocalFrame* frame,
61 const blink::WebURLError& error) {}
62 virtual void DidCommitProvisionalLoad(blink::WebLocalFrame* frame,
64 virtual void DidClearWindowObject(blink::WebLocalFrame* frame) {
    [all...]
  /external/chromium_org/content/child/webcrypto/test/
rsa_ssa_unittest.cc 41 blink::WebCryptoKey key = blink::WebCryptoKey::createNull();
43 ImportKey(blink::WebCryptoKeyFormatSpki,
46 blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5,
47 blink::WebCryptoAlgorithmIdSha256),
49 blink::WebCryptoKeyUsageVerify,
52 EXPECT_EQ(blink::WebCryptoKeyTypePublic, key.type());
54 EXPECT_EQ(blink::WebCryptoKeyUsageVerify, key.usages());
64 ImportKey(blink::WebCryptoKeyFormatSpki,
66 CreateAlgorithm(blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5)
    [all...]
  /external/chromium_org/cc/blink/
web_transform_animation_curve_impl.h 9 #include "cc/blink/cc_blink_export.h"
17 namespace blink { namespace
24 : public blink::WebTransformAnimationCurve {
29 // blink::WebCompositorAnimationCurve implementation.
32 // blink::WebTransformAnimationCurve implementation.
33 virtual void add(const blink::WebTransformKeyframe& keyframe);
34 virtual void add(const blink::WebTransformKeyframe& keyframe,
36 virtual void add(const blink::WebTransformKeyframe& keyframe,
  /external/chromium_org/content/child/
web_socket_stream_handle_delegate.h 12 namespace blink { namespace
22 virtual void WillOpenStream(blink::WebSocketStreamHandle* handle,
24 virtual void WillSendData(blink::WebSocketStreamHandle* handle,
27 virtual void DidOpenStream(blink::WebSocketStreamHandle* handle,
29 virtual void DidSendData(blink::WebSocketStreamHandle* handle,
31 virtual void DidReceiveData(blink::WebSocketStreamHandle* handle,
33 virtual void DidClose(blink::WebSocketStreamHandle*) {}
34 virtual void DidFail(blink::WebSocketStreamHandle* handle,
webfallbackthemeengine_impl.h 17 class WebFallbackThemeEngineImpl : public blink::WebFallbackThemeEngine {
23 virtual blink::WebSize getSize(blink::WebFallbackThemeEngine::Part);
25 blink::WebCanvas* canvas,
26 blink::WebFallbackThemeEngine::Part part,
27 blink::WebFallbackThemeEngine::State state,
28 const blink::WebRect& rect,
29 const blink::WebFallbackThemeEngine::ExtraParams* extra_params);
webthemeengine_impl_android.h 12 class WebThemeEngineImpl : public blink::WebThemeEngine {
15 virtual blink::WebSize getSize(blink::WebThemeEngine::Part);
17 blink::WebCanvas* canvas,
18 blink::WebThemeEngine::Part part,
19 blink::WebThemeEngine::State state,
20 const blink::WebRect& rect,
21 const blink::WebThemeEngine::ExtraParams* extra_params);
web_url_loader_impl.h 21 : public NON_EXPORTED_BASE(blink::WebURLLoader) {
26 static blink::WebURLError CreateError(const blink::WebURL& unreachable_url,
32 blink::WebURLResponse* response);
36 const blink::WebURLRequest& request,
37 blink::WebURLResponse& response,
38 blink::WebURLError& error,
39 blink::WebData& data) OVERRIDE;
41 const blink::WebURLRequest& request,
42 blink::WebURLLoaderClient* client) OVERRIDE
    [all...]
  /external/chromium_org/content/child/webcrypto/
structured_clone.h 18 // Called on the target Blink thread.
19 bool SerializeKeyForClone(const blink::WebCryptoKey& key,
20 blink::WebVector<uint8_t>* key_data);
22 // Called on the target Blink thread.
23 bool DeserializeKeyForClone(const blink::WebCryptoKeyAlgorithm& algorithm,
24 blink::WebCryptoKeyType type,
26 blink::WebCryptoKeyUsageMask usage_mask,
28 blink::WebCryptoKey* key);
webcrypto_util.h 25 blink::WebCryptoKeyUsageMask* jwk_key_ops_mask);
29 blink::WebCryptoKeyUsageMask usage_mask);
32 CONTENT_EXPORT blink::WebCryptoAlgorithm CreateAlgorithm(
33 blink::WebCryptoAlgorithmId id);
38 CONTENT_EXPORT blink::WebCryptoAlgorithm CreateHmacImportAlgorithm(
39 blink::WebCryptoAlgorithmId hash_id);
43 CONTENT_EXPORT blink::WebCryptoAlgorithm CreateRsaHashedImportAlgorithm(
44 blink::WebCryptoAlgorithmId id,
45 blink::WebCryptoAlgorithmId hash_id);
48 bool ContainsKeyUsages(blink::WebCryptoKeyUsageMask a
    [all...]
structured_clone.cc 21 blink::WebCryptoKeyFormat GetCloneFormatForKeyType(
22 blink::WebCryptoKeyType type) {
24 case blink::WebCryptoKeyTypeSecret:
25 return blink::WebCryptoKeyFormatRaw;
26 case blink::WebCryptoKeyTypePublic:
27 return blink::WebCryptoKeyFormatSpki;
28 case blink::WebCryptoKeyTypePrivate:
29 return blink::WebCryptoKeyFormatPkcs8;
33 return blink::WebCryptoKeyFormatRaw;
37 blink::WebCryptoAlgorithm KeyAlgorithmToImportAlgorithm
    [all...]
  /external/chromium_org/mojo/services/html_viewer/
html_document_view.h 32 class HTMLDocumentView : public blink::WebViewClient,
33 public blink::WebFrameClient,
54 virtual blink::WebStorageNamespace* createSessionStorageNamespace();
58 virtual blink::WebLayerTreeView* layerTreeView();
61 virtual blink::WebMediaPlayer* createMediaPlayer(
62 blink::WebLocalFrame* frame,
63 const blink::WebURL& url,
64 blink::WebMediaPlayerClient* client);
65 virtual blink::WebMediaPlayer* createMediaPlayer(
66 blink::WebLocalFrame* frame
    [all...]
  /external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
ElementLookupTrie.h.tmpl 9 namespace blink {
13 } // namespace blink
  /external/chromium_org/third_party/WebKit/Tools/
whitespace_file.txt 0 <blink>Hello world!</blink>
  /external/chromium_org/content/browser/web_contents/
web_drag_utils_win.h 14 blink::WebDragOperation WinDragOpToWebDragOp(DWORD effect);
15 blink::WebDragOperationsMask WinDragOpMaskToWebDragOpMask(DWORD effects);
17 DWORD WebDragOpToWinDragOp(blink::WebDragOperation op);
18 DWORD WebDragOpMaskToWinDragOpMask(blink::WebDragOperationsMask ops);
  /external/chromium_org/content/test/data/accessibility/
q.html 6 <q>Chromium Blink</q>
  /external/chromium_org/content/test/
weburl_loader_mock.h 12 namespace blink { namespace
26 class WebURLLoaderMock : public blink::WebURLLoader {
30 blink::WebURLLoader* default_loader);
34 void ServeAsynchronousRequest(const blink::WebURLResponse& response,
35 const blink::WebData& data,
36 const blink::WebURLError& error);
39 blink::WebURLRequest ServeRedirect(
40 const blink::WebURLResponse& redirectResponse);
43 virtual void loadSynchronously(const blink::WebURLRequest& request,
44 blink::WebURLResponse& response
    [all...]
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/
class_does_not_require_finalization.flags 1 -Xclang -plugin-arg-blink-gc-plugin -Xclang warn-unneeded-finalize
cycle_ptrs.flags 1 -Xclang -plugin-arg-blink-gc-plugin -Xclang dump-grap
cycle_sub.flags 1 -Xclang -plugin-arg-blink-gc-plugin -Xclang dump-grap
cycle_super.flags 1 -Xclang -plugin-arg-blink-gc-plugin -Xclang dump-grap
cycle_super_neg.flags 1 -Xclang -plugin-arg-blink-gc-plugin -Xclang dump-grap
  /external/chromium_org/content/renderer/
render_frame_impl.h 25 #include "media/blink/webmediaplayer_delegate.h"
39 namespace blink { namespace
86 NON_EXPORTED_BASE(public blink::WebFrameClient),
92 // Note: This is called only when RenderFrame is created by Blink through
99 // is MSG_ROUTING_NONE. It creates the Blink WebLocalFrame and inserts it in
103 // through Blink and Create.
110 static RenderFrameImpl* FromWebFrame(blink::WebFrame* web_frame);
144 void SetWebFrame(blink::WebLocalFrame* web_frame);
173 void HandleWebAccessibilityEvent(const blink::WebAXObject& obj,
174 blink::WebAXEvent event)
    [all...]
date_time_suggestion_builder.h 8 namespace blink { namespace
10 } // namespace blink
18 const blink::WebDateTimeSuggestion& suggestion);
  /external/chromium_org/content/child/service_worker/
web_service_worker_registration_impl.h 13 namespace blink { namespace
25 : NON_EXPORTED_BASE(public blink::WebServiceWorkerRegistration) {
31 void SetInstalling(blink::WebServiceWorker* service_worker);
32 void SetWaiting(blink::WebServiceWorker* service_worker);
33 void SetActive(blink::WebServiceWorker* service_worker);
37 // blink::WebServiceWorkerRegistration overrides.
38 virtual void setProxy(blink::WebServiceWorkerRegistrationProxy* proxy);
39 virtual blink::WebServiceWorkerRegistrationProxy* proxy();
40 virtual blink::WebURL scope() const;
52 blink::WebServiceWorker* worker)
    [all...]

Completed in 1801 milliseconds

1 2 3 45 6 7 8 91011>>