| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 v8::Local<v8::Context> context) override; | 408 v8::Local<v8::Context> context) override; |
| 409 void AddMessageToConsole(ConsoleMessageLevel level, | 409 void AddMessageToConsole(ConsoleMessageLevel level, |
| 410 const std::string& message) override; | 410 const std::string& message) override; |
| 411 bool IsUsingLoFi() const override; | 411 bool IsUsingLoFi() const override; |
| 412 bool IsPasting() const override; | 412 bool IsPasting() const override; |
| 413 | 413 |
| 414 // blink::WebFrameClient implementation: | 414 // blink::WebFrameClient implementation: |
| 415 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, | 415 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, |
| 416 const blink::WebPluginParams& params) override; | 416 const blink::WebPluginParams& params) override; |
| 417 blink::WebMediaPlayer* createMediaPlayer( | 417 blink::WebMediaPlayer* createMediaPlayer( |
| 418 const blink::WebURL& url, | 418 const blink::WebMediaPlayerSource& source, |
| 419 blink::WebMediaPlayerClient* client, | 419 blink::WebMediaPlayerClient* client, |
| 420 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, | 420 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, |
| 421 blink::WebContentDecryptionModule* initial_cdm, | 421 blink::WebContentDecryptionModule* initial_cdm, |
| 422 const blink::WebString& sink_id, | 422 const blink::WebString& sink_id, |
| 423 blink::WebMediaSession* media_session) override; | 423 blink::WebMediaSession* media_session) override; |
| 424 blink::WebMediaSession* createMediaSession() override; | 424 blink::WebMediaSession* createMediaSession() override; |
| 425 blink::WebApplicationCacheHost* createApplicationCacheHost( | 425 blink::WebApplicationCacheHost* createApplicationCacheHost( |
| 426 blink::WebApplicationCacheHostClient* client) override; | 426 blink::WebApplicationCacheHostClient* client) override; |
| 427 blink::WebWorkerContentSettingsClientProxy* | 427 blink::WebWorkerContentSettingsClientProxy* |
| 428 createWorkerContentSettingsClientProxy() override; | 428 createWorkerContentSettingsClientProxy() override; |
| (...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1210 FrameBlameContext* blame_context_; // Not owned. | 1210 FrameBlameContext* blame_context_; // Not owned. |
| 1211 | 1211 |
| 1212 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1212 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1213 | 1213 |
| 1214 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1214 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1215 }; | 1215 }; |
| 1216 | 1216 |
| 1217 } // namespace content | 1217 } // namespace content |
| 1218 | 1218 |
| 1219 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1219 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |