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

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: Make <webview> work without --site-per-process as well Created 5 years, 7 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 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 blink::WebHistoryCommitType commit_type); 585 blink::WebHistoryCommitType commit_type);
586 586
587 // IPC message handlers ------------------------------------------------------ 587 // IPC message handlers ------------------------------------------------------
588 // 588 //
589 // The documentation for these functions should be in 589 // The documentation for these functions should be in
590 // content/common/*_messages.h for the message that the function is handling. 590 // content/common/*_messages.h for the message that the function is handling.
591 void OnBeforeUnload(); 591 void OnBeforeUnload();
592 void OnSwapOut(int proxy_routing_id, 592 void OnSwapOut(int proxy_routing_id,
593 bool is_loading, 593 bool is_loading,
594 const FrameReplicationState& replicated_frame_state); 594 const FrameReplicationState& replicated_frame_state);
595 void OnReplaceLocalFrameWithProxy(int proxy_routing_id);
595 void OnStop(); 596 void OnStop();
596 void OnShowContextMenu(const gfx::Point& location); 597 void OnShowContextMenu(const gfx::Point& location);
597 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); 598 void OnContextMenuClosed(const CustomContextMenuContext& custom_context);
598 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, 599 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context,
599 unsigned action); 600 unsigned action);
600 void OnUndo(); 601 void OnUndo();
601 void OnRedo(); 602 void OnRedo();
602 void OnCut(); 603 void OnCut();
603 void OnCopy(); 604 void OnCopy();
604 void OnPaste(); 605 void OnPaste();
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
932 #endif 933 #endif
933 934
934 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 935 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
935 936
936 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 937 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
937 }; 938 };
938 939
939 } // namespace content 940 } // namespace content
940 941
941 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 942 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698