Chromium Code Reviews| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 210 virtual void GetAudioOutputControllers( | 210 virtual void GetAudioOutputControllers( |
| 211 const GetAudioOutputControllersCallback& callback) const OVERRIDE; | 211 const GetAudioOutputControllersCallback& callback) const OVERRIDE; |
| 212 virtual void SetWebUIHandle(mojo::ScopedMessagePipeHandle handle) OVERRIDE; | 212 virtual void SetWebUIHandle(mojo::ScopedMessagePipeHandle handle) OVERRIDE; |
| 213 virtual void SelectWordAroundCaret() OVERRIDE; | 213 virtual void SelectWordAroundCaret() OVERRIDE; |
| 214 | 214 |
| 215 #if defined(OS_ANDROID) | 215 #if defined(OS_ANDROID) |
| 216 virtual void ActivateNearestFindResult(int request_id, | 216 virtual void ActivateNearestFindResult(int request_id, |
| 217 float x, | 217 float x, |
| 218 float y) OVERRIDE; | 218 float y) OVERRIDE; |
| 219 virtual void RequestFindMatchRects(int current_version) OVERRIDE; | 219 virtual void RequestFindMatchRects(int current_version) OVERRIDE; |
| 220 | |
| 221 virtual void FullscreenChanged(bool is_fullscreen) OVERRIDE; | |
|
boliu
2014/06/13 15:50:58
If you pass is_fullscreen in here, then you don't
qinmin
2014/06/13 16:40:17
ok, removed the fullscreen changed IPC
On 2014/06
| |
| 220 #endif | 222 #endif |
| 221 | 223 |
| 222 void set_delegate(RenderViewHostDelegate* d) { | 224 void set_delegate(RenderViewHostDelegate* d) { |
| 223 CHECK(d); // http://crbug.com/82827 | 225 CHECK(d); // http://crbug.com/82827 |
| 224 delegate_ = d; | 226 delegate_ = d; |
| 225 } | 227 } |
| 226 | 228 |
| 227 // Set up the RenderView child process. Virtual because it is overridden by | 229 // Set up the RenderView child process. Virtual because it is overridden by |
| 228 // TestRenderViewHost. If the |frame_name| parameter is non-empty, it is used | 230 // TestRenderViewHost. If the |frame_name| parameter is non-empty, it is used |
| 229 // as the name of the new top-level frame. | 231 // as the name of the new top-level frame. |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 644 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 646 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 645 }; | 647 }; |
| 646 | 648 |
| 647 #if defined(COMPILER_MSVC) | 649 #if defined(COMPILER_MSVC) |
| 648 #pragma warning(pop) | 650 #pragma warning(pop) |
| 649 #endif | 651 #endif |
| 650 | 652 |
| 651 } // namespace content | 653 } // namespace content |
| 652 | 654 |
| 653 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 655 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |