OLD | NEW |
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 <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 void DetachGuest(int element_instance_id) override; | 347 void DetachGuest(int element_instance_id) override; |
348 void SetSelectedText(const base::string16& selection_text, | 348 void SetSelectedText(const base::string16& selection_text, |
349 size_t offset, | 349 size_t offset, |
350 const gfx::Range& range) override; | 350 const gfx::Range& range) override; |
351 void EnsureMojoBuiltinsAreAvailable(v8::Isolate* isolate, | 351 void EnsureMojoBuiltinsAreAvailable(v8::Isolate* isolate, |
352 v8::Local<v8::Context> context) override; | 352 v8::Local<v8::Context> context) override; |
353 void AddMessageToConsole(ConsoleMessageLevel level, | 353 void AddMessageToConsole(ConsoleMessageLevel level, |
354 const std::string& message) override; | 354 const std::string& message) override; |
355 | 355 |
356 // blink::WebFrameClient implementation: | 356 // blink::WebFrameClient implementation: |
357 blink::WebPluginPlaceholder* createPluginPlaceholder( | |
358 blink::WebLocalFrame*, | |
359 const blink::WebPluginParams&) override; | |
360 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, | 357 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, |
361 const blink::WebPluginParams& params); | 358 const blink::WebPluginParams& params); |
362 virtual blink::WebMediaPlayer* createMediaPlayer( | 359 virtual blink::WebMediaPlayer* createMediaPlayer( |
363 blink::WebLocalFrame* frame, | 360 blink::WebLocalFrame* frame, |
364 const blink::WebURL& url, | 361 const blink::WebURL& url, |
365 blink::WebMediaPlayerClient* client, | 362 blink::WebMediaPlayerClient* client, |
366 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, | 363 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, |
367 blink::WebContentDecryptionModule* initial_cdm); | 364 blink::WebContentDecryptionModule* initial_cdm); |
368 virtual blink::WebApplicationCacheHost* createApplicationCacheHost( | 365 virtual blink::WebApplicationCacheHost* createApplicationCacheHost( |
369 blink::WebLocalFrame* frame, | 366 blink::WebLocalFrame* frame, |
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1017 #endif | 1014 #endif |
1018 | 1015 |
1019 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1016 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1020 | 1017 |
1021 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1018 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1022 }; | 1019 }; |
1023 | 1020 |
1024 } // namespace content | 1021 } // namespace content |
1025 | 1022 |
1026 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1023 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |