| 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_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 SiteInstanceImpl* GetSiteInstance() const override; | 161 SiteInstanceImpl* GetSiteInstance() const override; |
| 162 bool IsRenderViewLive() const override; | 162 bool IsRenderViewLive() const override; |
| 163 void NotifyMoveOrResizeStarted() override; | 163 void NotifyMoveOrResizeStarted() override; |
| 164 void SetWebUIProperty(const std::string& name, | 164 void SetWebUIProperty(const std::string& name, |
| 165 const std::string& value) override; | 165 const std::string& value) override; |
| 166 void Zoom(PageZoom zoom) override; | 166 void Zoom(PageZoom zoom) override; |
| 167 void SyncRendererPrefs() override; | 167 void SyncRendererPrefs() override; |
| 168 WebPreferences GetWebkitPreferences() override; | 168 WebPreferences GetWebkitPreferences() override; |
| 169 void UpdateWebkitPreferences(const WebPreferences& prefs) override; | 169 void UpdateWebkitPreferences(const WebPreferences& prefs) override; |
| 170 void OnWebkitPreferencesChanged() override; | 170 void OnWebkitPreferencesChanged() override; |
| 171 void GetAudioOutputControllers( | |
| 172 const GetAudioOutputControllersCallback& callback) const override; | |
| 173 void SelectWordAroundCaret() override; | 171 void SelectWordAroundCaret() override; |
| 174 | 172 |
| 175 #if defined(OS_ANDROID) | 173 #if defined(OS_ANDROID) |
| 176 virtual void ActivateNearestFindResult(int request_id, | 174 virtual void ActivateNearestFindResult(int request_id, |
| 177 float x, | 175 float x, |
| 178 float y) override; | 176 float y) override; |
| 179 virtual void RequestFindMatchRects(int current_version) override; | 177 virtual void RequestFindMatchRects(int current_version) override; |
| 180 #endif | 178 #endif |
| 181 | 179 |
| 182 void set_delegate(RenderViewHostDelegate* d) { | 180 void set_delegate(RenderViewHostDelegate* d) { |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 462 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 465 }; | 463 }; |
| 466 | 464 |
| 467 #if defined(COMPILER_MSVC) | 465 #if defined(COMPILER_MSVC) |
| 468 #pragma warning(pop) | 466 #pragma warning(pop) |
| 469 #endif | 467 #endif |
| 470 | 468 |
| 471 } // namespace content | 469 } // namespace content |
| 472 | 470 |
| 473 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 471 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |