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

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

Issue 19800005: Hide knowledge of webkit::ppapi::PluginDelegate from chrome. This is part of moving ppapi implement… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 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
OLDNEW
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 <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 virtual int ShowContextMenu(ContextMenuClient* client, 725 virtual int ShowContextMenu(ContextMenuClient* client,
726 const ContextMenuParams& params) OVERRIDE; 726 const ContextMenuParams& params) OVERRIDE;
727 virtual void CancelContextMenu(int request_id) OVERRIDE; 727 virtual void CancelContextMenu(int request_id) OVERRIDE;
728 virtual WebKit::WebPageVisibilityState GetVisibilityState() const OVERRIDE; 728 virtual WebKit::WebPageVisibilityState GetVisibilityState() const OVERRIDE;
729 virtual void RunModalAlertDialog(WebKit::WebFrame* frame, 729 virtual void RunModalAlertDialog(WebKit::WebFrame* frame,
730 const WebKit::WebString& message) OVERRIDE; 730 const WebKit::WebString& message) OVERRIDE;
731 virtual void LoadURLExternally( 731 virtual void LoadURLExternally(
732 WebKit::WebFrame* frame, 732 WebKit::WebFrame* frame,
733 const WebKit::WebURLRequest& request, 733 const WebKit::WebURLRequest& request,
734 WebKit::WebNavigationPolicy policy) OVERRIDE; 734 WebKit::WebNavigationPolicy policy) OVERRIDE;
735 virtual void DidStartLoading() OVERRIDE;
736 virtual void DidStopLoading() OVERRIDE;
735 virtual void Repaint(const gfx::Size& size) OVERRIDE; 737 virtual void Repaint(const gfx::Size& size) OVERRIDE;
736 virtual void SetEditCommandForNextKeyEvent(const std::string& name, 738 virtual void SetEditCommandForNextKeyEvent(const std::string& name,
737 const std::string& value) OVERRIDE; 739 const std::string& value) OVERRIDE;
738 virtual void ClearEditCommands() OVERRIDE; 740 virtual void ClearEditCommands() OVERRIDE;
739 virtual SSLStatus GetSSLStatusOfFrame(WebKit::WebFrame* frame) const OVERRIDE; 741 virtual SSLStatus GetSSLStatusOfFrame(WebKit::WebFrame* frame) const OVERRIDE;
740 #if defined(OS_ANDROID) 742 #if defined(OS_ANDROID)
741 virtual void UpdateTopControlsState(TopControlsState constraints, 743 virtual void UpdateTopControlsState(TopControlsState constraints,
742 TopControlsState current, 744 TopControlsState current,
743 bool animate) OVERRIDE; 745 bool animate) OVERRIDE;
744 #endif 746 #endif
(...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after
1555 // use the Observer interface to filter IPC messages and receive frame change 1557 // use the Observer interface to filter IPC messages and receive frame change
1556 // notifications. 1558 // notifications.
1557 // --------------------------------------------------------------------------- 1559 // ---------------------------------------------------------------------------
1558 1560
1559 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1561 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1560 }; 1562 };
1561 1563
1562 } // namespace content 1564 } // namespace content
1563 1565
1564 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1566 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698