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

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: rebase Created 4 years, 8 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
« no previous file with comments | « content/common/frame_messages.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 blink::WebEncryptedMediaClient* encryptedMediaClient() override; 585 blink::WebEncryptedMediaClient* encryptedMediaClient() override;
586 blink::WebMIDIClient* webMIDIClient() override; 586 blink::WebMIDIClient* webMIDIClient() override;
587 bool willCheckAndDispatchMessageEvent( 587 bool willCheckAndDispatchMessageEvent(
588 blink::WebLocalFrame* source_frame, 588 blink::WebLocalFrame* source_frame,
589 blink::WebFrame* target_frame, 589 blink::WebFrame* target_frame,
590 blink::WebSecurityOrigin target_origin, 590 blink::WebSecurityOrigin target_origin,
591 blink::WebDOMMessageEvent event) override; 591 blink::WebDOMMessageEvent event) override;
592 blink::WebString userAgentOverride() override; 592 blink::WebString userAgentOverride() override;
593 blink::WebString doNotTrackValue() override; 593 blink::WebString doNotTrackValue() override;
594 bool allowWebGL(bool default_value) override; 594 bool allowWebGL(bool default_value) override;
595 void didLoseWebGLContext(int arb_robustness_status_code) override;
596 blink::WebScreenOrientationClient* webScreenOrientationClient() override; 595 blink::WebScreenOrientationClient* webScreenOrientationClient() override;
597 bool isControlledByServiceWorker(blink::WebDataSource& data_source) override; 596 bool isControlledByServiceWorker(blink::WebDataSource& data_source) override;
598 int64_t serviceWorkerID(blink::WebDataSource& data_source) override; 597 int64_t serviceWorkerID(blink::WebDataSource& data_source) override;
599 void postAccessibilityEvent(const blink::WebAXObject& obj, 598 void postAccessibilityEvent(const blink::WebAXObject& obj,
600 blink::WebAXEvent event) override; 599 blink::WebAXEvent event) override;
601 void handleAccessibilityFindInPageResult( 600 void handleAccessibilityFindInPageResult(
602 int identifier, 601 int identifier,
603 int match_index, 602 int match_index,
604 const blink::WebAXObject& start_object, 603 const blink::WebAXObject& start_object,
605 int start_offset, 604 int start_offset,
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
1219 FrameBlameContext* blame_context_; // Not owned. 1218 FrameBlameContext* blame_context_; // Not owned.
1220 1219
1221 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1220 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1222 1221
1223 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1222 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1224 }; 1223 };
1225 1224
1226 } // namespace content 1225 } // namespace content
1227 1226
1228 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1227 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/frame_messages.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698