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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 1747283003: Remove redundant codepath for webgl api blocking (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: better handle 'exit_on_context_lost' Created 4 years, 9 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 blink::WebEncryptedMediaClient* encryptedMediaClient() override; 575 blink::WebEncryptedMediaClient* encryptedMediaClient() override;
576 blink::WebMIDIClient* webMIDIClient() override; 576 blink::WebMIDIClient* webMIDIClient() override;
577 bool willCheckAndDispatchMessageEvent( 577 bool willCheckAndDispatchMessageEvent(
578 blink::WebLocalFrame* source_frame, 578 blink::WebLocalFrame* source_frame,
579 blink::WebFrame* target_frame, 579 blink::WebFrame* target_frame,
580 blink::WebSecurityOrigin target_origin, 580 blink::WebSecurityOrigin target_origin,
581 blink::WebDOMMessageEvent event) override; 581 blink::WebDOMMessageEvent event) override;
582 blink::WebString userAgentOverride() override; 582 blink::WebString userAgentOverride() override;
583 blink::WebString doNotTrackValue() override; 583 blink::WebString doNotTrackValue() override;
584 bool allowWebGL(bool default_value) override; 584 bool allowWebGL(bool default_value) override;
585 void didLoseWebGLContext(int arb_robustness_status_code) override;
586 blink::WebScreenOrientationClient* webScreenOrientationClient() override; 585 blink::WebScreenOrientationClient* webScreenOrientationClient() override;
587 bool isControlledByServiceWorker(blink::WebDataSource& data_source) override; 586 bool isControlledByServiceWorker(blink::WebDataSource& data_source) override;
588 int64_t serviceWorkerID(blink::WebDataSource& data_source) override; 587 int64_t serviceWorkerID(blink::WebDataSource& data_source) override;
589 void postAccessibilityEvent(const blink::WebAXObject& obj, 588 void postAccessibilityEvent(const blink::WebAXObject& obj,
590 blink::WebAXEvent event) override; 589 blink::WebAXEvent event) override;
591 void handleAccessibilityFindInPageResult( 590 void handleAccessibilityFindInPageResult(
592 int identifier, 591 int identifier,
593 int match_index, 592 int match_index,
594 const blink::WebAXObject& start_object, 593 const blink::WebAXObject& start_object,
595 int start_offset, 594 int start_offset,
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after
1201 #endif 1200 #endif
1202 1201
1203 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1202 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1204 1203
1205 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1204 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1206 }; 1205 };
1207 1206
1208 } // namespace content 1207 } // namespace content
1209 1208
1210 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1209 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698