| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 void OnSetInitialFocus(bool reverse); | 579 void OnSetInitialFocus(bool reverse); |
| 580 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 580 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 581 void OnSetWebUIProperty(const std::string& name, const std::string& value); | 581 void OnSetWebUIProperty(const std::string& name, const std::string& value); |
| 582 void OnSuppressDialogsUntilSwapOut(); | 582 void OnSuppressDialogsUntilSwapOut(); |
| 583 void OnUpdateTargetURLAck(); | 583 void OnUpdateTargetURLAck(); |
| 584 void OnUpdateWebPreferences(const WebPreferences& prefs); | 584 void OnUpdateWebPreferences(const WebPreferences& prefs); |
| 585 void OnSetPageScale(float page_scale_factor); | 585 void OnSetPageScale(float page_scale_factor); |
| 586 void OnZoom(PageZoom zoom); | 586 void OnZoom(PageZoom zoom); |
| 587 void OnForceRedraw(const ui::LatencyInfo& latency_info); | 587 void OnForceRedraw(const ui::LatencyInfo& latency_info); |
| 588 void OnSelectWordAroundCaret(); | 588 void OnSelectWordAroundCaret(); |
| 589 void OnAudioStateChanged(bool is_audio_playing); | |
| 590 #if defined(OS_ANDROID) | 589 #if defined(OS_ANDROID) |
| 591 void OnUndoScrollFocusedEditableNodeIntoRect(); | 590 void OnUndoScrollFocusedEditableNodeIntoRect(); |
| 592 void OnUpdateBrowserControlsState(bool enable_hiding, | 591 void OnUpdateBrowserControlsState(bool enable_hiding, |
| 593 bool enable_showing, | 592 bool enable_showing, |
| 594 bool animate); | 593 bool animate); |
| 595 void OnExtractSmartClipData(const gfx::Rect& rect); | 594 void OnExtractSmartClipData(const gfx::Rect& rect); |
| 596 #elif defined(OS_MACOSX) | 595 #elif defined(OS_MACOSX) |
| 597 void OnGetRenderedText(); | 596 void OnGetRenderedText(); |
| 598 #endif | 597 #endif |
| 599 | 598 |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 875 // use the Observer interface to filter IPC messages and receive frame change | 874 // use the Observer interface to filter IPC messages and receive frame change |
| 876 // notifications. | 875 // notifications. |
| 877 // --------------------------------------------------------------------------- | 876 // --------------------------------------------------------------------------- |
| 878 | 877 |
| 879 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 878 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 880 }; | 879 }; |
| 881 | 880 |
| 882 } // namespace content | 881 } // namespace content |
| 883 | 882 |
| 884 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 883 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |