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

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

Issue 2719333002: second stage
Patch Set: Need to get around resource loading without web/ Created 3 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
« no previous file with comments | « content/public/common/content_features.cc ('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 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 void GetInterfaceProvider( 474 void GetInterfaceProvider(
475 service_manager::mojom::InterfaceProviderRequest request) override; 475 service_manager::mojom::InterfaceProviderRequest request) override;
476 476
477 // mojom::FrameBindingsControl implementation: 477 // mojom::FrameBindingsControl implementation:
478 void AllowBindings(int32_t enabled_bindings_flags) override; 478 void AllowBindings(int32_t enabled_bindings_flags) override;
479 479
480 // mojom::HostZoom implementation: 480 // mojom::HostZoom implementation:
481 void SetHostZoomLevel(const GURL& url, double zoom_level) override; 481 void SetHostZoomLevel(const GURL& url, double zoom_level) override;
482 482
483 // blink::WebFrameClient implementation: 483 // blink::WebFrameClient implementation:
484 int32_t getUniqueElementIdForMimeHandlerView() override;
484 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, 485 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame,
485 const blink::WebPluginParams& params) override; 486 const blink::WebPluginParams& params) override;
486 blink::WebMediaPlayer* createMediaPlayer( 487 blink::WebMediaPlayer* createMediaPlayer(
487 const blink::WebMediaPlayerSource& source, 488 const blink::WebMediaPlayerSource& source,
488 blink::WebMediaPlayerClient* client, 489 blink::WebMediaPlayerClient* client,
489 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, 490 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client,
490 blink::WebContentDecryptionModule* initial_cdm, 491 blink::WebContentDecryptionModule* initial_cdm,
491 const blink::WebString& sink_id) override; 492 const blink::WebString& sink_id) override;
492 blink::WebApplicationCacheHost* createApplicationCacheHost( 493 blink::WebApplicationCacheHost* createApplicationCacheHost(
493 blink::WebApplicationCacheHostClient* client) override; 494 blink::WebApplicationCacheHostClient* client) override;
(...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after
1396 int enabled_bindings_ = 0; 1397 int enabled_bindings_ = 0;
1397 1398
1398 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1399 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1399 1400
1400 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1401 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1401 }; 1402 };
1402 1403
1403 } // namespace content 1404 } // namespace content
1404 1405
1405 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1406 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/common/content_features.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698