| 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 <set> | 8 #include <set> | 
| 9 | 9 | 
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" | 
| (...skipping 1458 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1469 | 1469 | 
| 1470   // Holds the message used to return find results to the browser during | 1470   // Holds the message used to return find results to the browser during | 
| 1471   // synchronous find-in-page requests. Only non-null during these requests. | 1471   // synchronous find-in-page requests. Only non-null during these requests. | 
| 1472   scoped_ptr<IPC::Message> synchronous_find_reply_message_; | 1472   scoped_ptr<IPC::Message> synchronous_find_reply_message_; | 
| 1473 | 1473 | 
| 1474   // The active find-in-page match ordinal during synchronous requests. | 1474   // The active find-in-page match ordinal during synchronous requests. | 
| 1475   // Needed to be remembered across WebKit callbacks. | 1475   // Needed to be remembered across WebKit callbacks. | 
| 1476   int synchronous_find_active_match_ordinal_; | 1476   int synchronous_find_active_match_ordinal_; | 
| 1477 | 1477 | 
| 1478   // A date/time picker object for date and time related input elements. | 1478   // A date/time picker object for date and time related input elements. | 
| 1479   scoped_ptr<RendererDateTimePicker> date_time_picker_client_; | 1479   RendererDateTimePicker* date_time_picker_client_; | 
| 1480 #endif | 1480 #endif | 
| 1481 | 1481 | 
| 1482   // Misc ---------------------------------------------------------------------- | 1482   // Misc ---------------------------------------------------------------------- | 
| 1483 | 1483 | 
| 1484   // The current and pending file chooser completion objects. If the queue is | 1484   // The current and pending file chooser completion objects. If the queue is | 
| 1485   // nonempty, the first item represents the currently running file chooser | 1485   // nonempty, the first item represents the currently running file chooser | 
| 1486   // callback, and the remaining elements are the other file chooser completion | 1486   // callback, and the remaining elements are the other file chooser completion | 
| 1487   // still waiting to be run (in order). | 1487   // still waiting to be run (in order). | 
| 1488   struct PendingFileChooser; | 1488   struct PendingFileChooser; | 
| 1489   std::deque< linked_ptr<PendingFileChooser> > file_chooser_completions_; | 1489   std::deque< linked_ptr<PendingFileChooser> > file_chooser_completions_; | 
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1598   // use the Observer interface to filter IPC messages and receive frame change | 1598   // use the Observer interface to filter IPC messages and receive frame change | 
| 1599   // notifications. | 1599   // notifications. | 
| 1600   // --------------------------------------------------------------------------- | 1600   // --------------------------------------------------------------------------- | 
| 1601 | 1601 | 
| 1602   DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1602   DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 
| 1603 }; | 1603 }; | 
| 1604 | 1604 | 
| 1605 }  // namespace content | 1605 }  // namespace content | 
| 1606 | 1606 | 
| 1607 #endif  // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1607 #endif  // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 
| OLD | NEW | 
|---|