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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 972313002: Make <webview> use out-of-process iframe architecture. (Closed) Base URL: ssh://saopaulo.wat/mnt/dev/shared/src@testoopif2z-better-chrome
Patch Set: some review comments addressed Created 5 years, 8 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 void OnCut(); 605 void OnCut();
606 void OnCopy(); 606 void OnCopy();
607 void OnPaste(); 607 void OnPaste();
608 void OnPasteAndMatchStyle(); 608 void OnPasteAndMatchStyle();
609 void OnDelete(); 609 void OnDelete();
610 void OnSelectAll(); 610 void OnSelectAll();
611 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent); 611 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent);
612 void OnUnselect(); 612 void OnUnselect();
613 void OnMoveRangeSelectionExtent(const gfx::Point& point); 613 void OnMoveRangeSelectionExtent(const gfx::Point& point);
614 void OnReplace(const base::string16& text); 614 void OnReplace(const base::string16& text);
615 void OnReplaceLocalFrameWithProxy(int proxy_routing_id);
Charlie Reis 2015/04/08 23:42:12 This probably belongs closer to OnSwapOut, since i
lazyboy 2015/04/14 01:38:04 Done.
615 void OnReplaceMisspelling(const base::string16& text); 616 void OnReplaceMisspelling(const base::string16& text);
616 void OnCSSInsertRequest(const std::string& css); 617 void OnCSSInsertRequest(const std::string& css);
617 void OnJavaScriptExecuteRequest(const base::string16& javascript, 618 void OnJavaScriptExecuteRequest(const base::string16& javascript,
618 int id, 619 int id,
619 bool notify_result); 620 bool notify_result);
620 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, 621 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript,
621 int id, 622 int id,
622 bool notify_result); 623 bool notify_result);
623 void OnVisualStateRequest(uint64 key); 624 void OnVisualStateRequest(uint64 key);
624 void OnSetEditableSelectionOffsets(int start, int end); 625 void OnSetEditableSelectionOffsets(int start, int end);
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
916 #endif 917 #endif
917 918
918 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 919 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
919 920
920 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 921 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
921 }; 922 };
922 923
923 } // namespace content 924 } // namespace content
924 925
925 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 926 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698