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_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 <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 313 #endif // ENABLE_PLUGINS | 313 #endif // ENABLE_PLUGINS |
| 314 | 314 |
| 315 void TransferActiveWheelFlingAnimation( | 315 void TransferActiveWheelFlingAnimation( |
| 316 const blink::WebActiveWheelFlingParameters& params); | 316 const blink::WebActiveWheelFlingParameters& params); |
| 317 | 317 |
| 318 // Returns true if the focused element is editable text from the perspective | 318 // Returns true if the focused element is editable text from the perspective |
| 319 // of IME support (also used for on-screen keyboard). Works correctly inside | 319 // of IME support (also used for on-screen keyboard). Works correctly inside |
| 320 // supported PPAPI plug-ins. | 320 // supported PPAPI plug-ins. |
| 321 bool HasIMETextFocus(); | 321 bool HasIMETextFocus(); |
| 322 | 322 |
| 323 // Called after WebUIMojoContextState has run the 'main' module. | |
| 324 void WebUIMojoMainRan(); | |
|
jam
2014/07/25 21:29:58
no changes here or in the cc file
| |
| 325 | |
| 323 // Callback for use with GetWindowSnapshot. | 326 // Callback for use with GetWindowSnapshot. |
| 324 typedef base::Callback<void( | 327 typedef base::Callback<void( |
| 325 const gfx::Size&, const std::vector<unsigned char>&)> | 328 const gfx::Size&, const std::vector<unsigned char>&)> |
| 326 WindowSnapshotCallback; | 329 WindowSnapshotCallback; |
| 327 | 330 |
| 328 void GetWindowSnapshot(const WindowSnapshotCallback& callback); | 331 void GetWindowSnapshot(const WindowSnapshotCallback& callback); |
| 329 | 332 |
| 330 // Dispatches the current navigation state to the browser. Called on a | 333 // Dispatches the current navigation state to the browser. Called on a |
| 331 // periodic timer so we don't send too many messages. | 334 // periodic timer so we don't send too many messages. |
| 332 void SyncNavigationState(); | 335 void SyncNavigationState(); |
| (...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1160 // use the Observer interface to filter IPC messages and receive frame change | 1163 // use the Observer interface to filter IPC messages and receive frame change |
| 1161 // notifications. | 1164 // notifications. |
| 1162 // --------------------------------------------------------------------------- | 1165 // --------------------------------------------------------------------------- |
| 1163 | 1166 |
| 1164 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1167 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1165 }; | 1168 }; |
| 1166 | 1169 |
| 1167 } // namespace content | 1170 } // namespace content |
| 1168 | 1171 |
| 1169 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1172 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |