Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: chrome/renderer/render_view.h

Issue 660137: Allow users to close the find session and activate the current link via ctrl-... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/render_messages_internal.h ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/common/render_messages_internal.h ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698