| 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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 #if BUILDFLAG(ENABLE_PLUGINS) | 421 #if BUILDFLAG(ENABLE_PLUGINS) |
| 422 void RegisterPeripheralPlugin( | 422 void RegisterPeripheralPlugin( |
| 423 const url::Origin& content_origin, | 423 const url::Origin& content_origin, |
| 424 const base::Closure& unthrottle_callback) override; | 424 const base::Closure& unthrottle_callback) override; |
| 425 RenderFrame::PeripheralContentStatus GetPeripheralContentStatus( | 425 RenderFrame::PeripheralContentStatus GetPeripheralContentStatus( |
| 426 const url::Origin& main_frame_origin, | 426 const url::Origin& main_frame_origin, |
| 427 const url::Origin& content_origin, | 427 const url::Origin& content_origin, |
| 428 const gfx::Size& unobscured_size, | 428 const gfx::Size& unobscured_size, |
| 429 RecordPeripheralDecision record_decision) const override; | 429 RecordPeripheralDecision record_decision) const override; |
| 430 void WhitelistContentOrigin(const url::Origin& content_origin) override; | 430 void WhitelistContentOrigin(const url::Origin& content_origin) override; |
| 431 void DidStartLoading() override; | 431 void PluginDidStartLoading() override; |
| 432 void DidStopLoading() override; | 432 void PluginDidStopLoading() override; |
| 433 #endif | 433 #endif |
| 434 bool IsFTPDirectoryListing() override; | 434 bool IsFTPDirectoryListing() override; |
| 435 void AttachGuest(int element_instance_id) override; | 435 void AttachGuest(int element_instance_id) override; |
| 436 void DetachGuest(int element_instance_id) override; | 436 void DetachGuest(int element_instance_id) override; |
| 437 void SetSelectedText(const base::string16& selection_text, | 437 void SetSelectedText(const base::string16& selection_text, |
| 438 size_t offset, | 438 size_t offset, |
| 439 const gfx::Range& range) override; | 439 const gfx::Range& range) override; |
| 440 void EnsureMojoBuiltinsAreAvailable(v8::Isolate* isolate, | 440 void EnsureMojoBuiltinsAreAvailable(v8::Isolate* isolate, |
| 441 v8::Local<v8::Context> context) override; | 441 v8::Local<v8::Context> context) override; |
| 442 void AddMessageToConsole(ConsoleMessageLevel level, | 442 void AddMessageToConsole(ConsoleMessageLevel level, |
| (...skipping 918 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1361 bool browser_side_navigation_pending_ = false; | 1361 bool browser_side_navigation_pending_ = false; |
| 1362 | 1362 |
| 1363 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1363 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1364 | 1364 |
| 1365 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1365 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1366 }; | 1366 }; |
| 1367 | 1367 |
| 1368 } // namespace content | 1368 } // namespace content |
| 1369 | 1369 |
| 1370 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1370 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |