| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
| 6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 void SendSnapshot(); | 606 void SendSnapshot(); |
| 607 void OnPrintPages(); | 607 void OnPrintPages(); |
| 608 void OnPrintingDone(int document_cookie, bool success); | 608 void OnPrintingDone(int document_cookie, bool success); |
| 609 void OnNavigate(const ViewMsg_Navigate_Params& params); | 609 void OnNavigate(const ViewMsg_Navigate_Params& params); |
| 610 void OnStop(); | 610 void OnStop(); |
| 611 void OnReloadFrame(); | 611 void OnReloadFrame(); |
| 612 void OnLoadAlternateHTMLText(const std::string& html_contents, | 612 void OnLoadAlternateHTMLText(const std::string& html_contents, |
| 613 bool new_navigation, | 613 bool new_navigation, |
| 614 const GURL& display_url, | 614 const GURL& display_url, |
| 615 const std::string& security_info); | 615 const std::string& security_info); |
| 616 void OnStopFinding(bool clear_selection); | 616 void OnStopFinding(const ViewMsg_StopFinding_Params& params); |
| 617 void OnFindReplyAck(); | 617 void OnFindReplyAck(); |
| 618 void OnUpdateTargetURLAck(); | 618 void OnUpdateTargetURLAck(); |
| 619 void OnUndo(); | 619 void OnUndo(); |
| 620 void OnRedo(); | 620 void OnRedo(); |
| 621 void OnCut(); | 621 void OnCut(); |
| 622 void OnCopy(); | 622 void OnCopy(); |
| 623 #if defined(OS_MACOSX) | 623 #if defined(OS_MACOSX) |
| 624 void OnCopyToFindPboard(); | 624 void OnCopyToFindPboard(); |
| 625 #endif | 625 #endif |
| 626 void OnPaste(); | 626 void OnPaste(); |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1164 | 1164 |
| 1165 // The geolocation dispatcher attached to this view, lazily initialized. | 1165 // The geolocation dispatcher attached to this view, lazily initialized. |
| 1166 scoped_ptr<GeolocationDispatcher> geolocation_dispatcher_; | 1166 scoped_ptr<GeolocationDispatcher> geolocation_dispatcher_; |
| 1167 | 1167 |
| 1168 RendererWebCookieJarImpl cookie_jar_; | 1168 RendererWebCookieJarImpl cookie_jar_; |
| 1169 | 1169 |
| 1170 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1170 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1171 }; | 1171 }; |
| 1172 | 1172 |
| 1173 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1173 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |