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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 } | 331 } |
332 #endif | 332 #endif |
333 bool IsFTPDirectoryListing() override; | 333 bool IsFTPDirectoryListing() override; |
334 void AttachGuest(int element_instance_id) override; | 334 void AttachGuest(int element_instance_id) override; |
335 void DetachGuest(int element_instance_id) override; | 335 void DetachGuest(int element_instance_id) override; |
336 void SetSelectedText(const base::string16& selection_text, | 336 void SetSelectedText(const base::string16& selection_text, |
337 size_t offset, | 337 size_t offset, |
338 const gfx::Range& range) override; | 338 const gfx::Range& range) override; |
339 void EnsureMojoBuiltinsAreAvailable(v8::Isolate* isolate, | 339 void EnsureMojoBuiltinsAreAvailable(v8::Isolate* isolate, |
340 v8::Local<v8::Context> context) override; | 340 v8::Local<v8::Context> context) override; |
| 341 void AddMessageToConsole(ConsoleMessageLevel level, |
| 342 const std::string& message) override; |
341 | 343 |
342 // blink::WebFrameClient implementation: | 344 // blink::WebFrameClient implementation: |
343 blink::WebPluginPlaceholder* createPluginPlaceholder( | 345 blink::WebPluginPlaceholder* createPluginPlaceholder( |
344 blink::WebLocalFrame*, | 346 blink::WebLocalFrame*, |
345 const blink::WebPluginParams&) override; | 347 const blink::WebPluginParams&) override; |
346 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, | 348 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, |
347 const blink::WebPluginParams& params); | 349 const blink::WebPluginParams& params); |
348 virtual blink::WebMediaPlayer* createMediaPlayer( | 350 virtual blink::WebMediaPlayer* createMediaPlayer( |
349 blink::WebLocalFrame* frame, | 351 blink::WebLocalFrame* frame, |
350 const blink::WebURL& url, | 352 const blink::WebURL& url, |
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
995 #endif | 997 #endif |
996 | 998 |
997 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 999 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
998 | 1000 |
999 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1001 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1000 }; | 1002 }; |
1001 | 1003 |
1002 } // namespace content | 1004 } // namespace content |
1003 | 1005 |
1004 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1006 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |