| 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; |
| 357 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, | 360 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, |
| 358 const blink::WebPluginParams& params); | 361 const blink::WebPluginParams& params); |
| 359 virtual blink::WebMediaPlayer* createMediaPlayer( | 362 virtual blink::WebMediaPlayer* createMediaPlayer( |
| 360 blink::WebLocalFrame* frame, | 363 blink::WebLocalFrame* frame, |
| 361 const blink::WebURL& url, | 364 const blink::WebURL& url, |
| 362 blink::WebMediaPlayerClient* client, | 365 blink::WebMediaPlayerClient* client, |
| 363 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, | 366 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, |
| 364 blink::WebContentDecryptionModule* initial_cdm); | 367 blink::WebContentDecryptionModule* initial_cdm); |
| 365 virtual blink::WebApplicationCacheHost* createApplicationCacheHost( | 368 virtual blink::WebApplicationCacheHost* createApplicationCacheHost( |
| 366 blink::WebLocalFrame* frame, | 369 blink::WebLocalFrame* frame, |
| (...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1014 #endif | 1017 #endif |
| 1015 | 1018 |
| 1016 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1019 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1017 | 1020 |
| 1018 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1021 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1019 }; | 1022 }; |
| 1020 | 1023 |
| 1021 } // namespace content | 1024 } // namespace content |
| 1022 | 1025 |
| 1023 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1026 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |