| 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 bool ScheduleFileChooser(const FileChooserParams& params, | 258 bool ScheduleFileChooser(const FileChooserParams& params, |
| 259 blink::WebFileChooserCompletion* completion); | 259 blink::WebFileChooserCompletion* completion); |
| 260 | 260 |
| 261 void LoadNavigationErrorPage( | 261 void LoadNavigationErrorPage( |
| 262 blink::WebFrame* frame, | 262 blink::WebFrame* frame, |
| 263 const blink::WebURLRequest& failed_request, | 263 const blink::WebURLRequest& failed_request, |
| 264 const blink::WebURLError& error, | 264 const blink::WebURLError& error, |
| 265 const std::string& html, | 265 const std::string& html, |
| 266 bool replace); | 266 bool replace); |
| 267 | 267 |
| 268 #if defined(OS_ANDROID) |
| 269 void DidDismissDateTimeDialog(); |
| 270 #endif |
| 271 |
| 268 // Plugin-related functions -------------------------------------------------- | 272 // Plugin-related functions -------------------------------------------------- |
| 269 | 273 |
| 270 #if defined(ENABLE_PLUGINS) | 274 #if defined(ENABLE_PLUGINS) |
| 271 // Indicates that the given instance has been created. | 275 // Indicates that the given instance has been created. |
| 272 void PepperInstanceCreated(PepperPluginInstanceImpl* instance); | 276 void PepperInstanceCreated(PepperPluginInstanceImpl* instance); |
| 273 | 277 |
| 274 // Indicates that the given instance is being destroyed. This is called from | 278 // Indicates that the given instance is being destroyed. This is called from |
| 275 // the destructor, so it's important that the instance is not dereferenced | 279 // the destructor, so it's important that the instance is not dereferenced |
| 276 // from this call. | 280 // from this call. |
| 277 void PepperInstanceDeleted(PepperPluginInstanceImpl* instance); | 281 void PepperInstanceDeleted(PepperPluginInstanceImpl* instance); |
| (...skipping 1285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1563 // use the Observer interface to filter IPC messages and receive frame change | 1567 // use the Observer interface to filter IPC messages and receive frame change |
| 1564 // notifications. | 1568 // notifications. |
| 1565 // --------------------------------------------------------------------------- | 1569 // --------------------------------------------------------------------------- |
| 1566 | 1570 |
| 1567 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1571 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1568 }; | 1572 }; |
| 1569 | 1573 |
| 1570 } // namespace content | 1574 } // namespace content |
| 1571 | 1575 |
| 1572 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1576 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |