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

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

Issue 8511032: Make the Pepper Flash net address just private, not Flash-specific. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 class NotificationProvider; 67 class NotificationProvider;
68 class PepperDeviceTest; 68 class PepperDeviceTest;
69 class PrintWebViewHelper; 69 class PrintWebViewHelper;
70 class RenderWidgetFullscreenPepper; 70 class RenderWidgetFullscreenPepper;
71 class RendererAccessibility; 71 class RendererAccessibility;
72 class SkBitmap; 72 class SkBitmap;
73 class SpeechInputDispatcher; 73 class SpeechInputDispatcher;
74 class WebPluginDelegateProxy; 74 class WebPluginDelegateProxy;
75 class WebUIBindings; 75 class WebUIBindings;
76 struct ContextMenuMediaParams; 76 struct ContextMenuMediaParams;
77 struct PP_Flash_NetAddress; 77 struct PP_NetAddress_Private;
78 struct ViewHostMsg_RunFileChooser_Params; 78 struct ViewHostMsg_RunFileChooser_Params;
79 struct ViewMsg_SwapOut_Params; 79 struct ViewMsg_SwapOut_Params;
80 struct ViewMsg_Navigate_Params; 80 struct ViewMsg_Navigate_Params;
81 struct ViewMsg_StopFinding_Params; 81 struct ViewMsg_StopFinding_Params;
82 struct WebDropData; 82 struct WebDropData;
83 83
84 namespace base { 84 namespace base {
85 class WaitableEvent; 85 class WaitableEvent;
86 } // namespace base 86 } // namespace base
87 87
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 int message_id); 749 int message_id);
750 void OnPpapiBrokerChannelCreated(int request_id, 750 void OnPpapiBrokerChannelCreated(int request_id,
751 base::ProcessHandle broker_process_handle, 751 base::ProcessHandle broker_process_handle,
752 const IPC::ChannelHandle& handle); 752 const IPC::ChannelHandle& handle);
753 void OnCancelDownload(int32 download_id); 753 void OnCancelDownload(int32 download_id);
754 void OnClearFocusedNode(); 754 void OnClearFocusedNode();
755 void OnClosePage(); 755 void OnClosePage();
756 #if defined(ENABLE_FLAPPER_HACKS) 756 #if defined(ENABLE_FLAPPER_HACKS)
757 void OnConnectTcpACK(int request_id, 757 void OnConnectTcpACK(int request_id,
758 IPC::PlatformFileForTransit socket_for_transit, 758 IPC::PlatformFileForTransit socket_for_transit,
759 const PP_Flash_NetAddress& local_addr, 759 const PP_NetAddress_Private& local_addr,
760 const PP_Flash_NetAddress& remote_addr); 760 const PP_NetAddress_Private& remote_addr);
761 #endif 761 #endif
762 void OnContextMenuClosed( 762 void OnContextMenuClosed(
763 const webkit_glue::CustomContextMenuContext& custom_context); 763 const webkit_glue::CustomContextMenuContext& custom_context);
764 void OnCopy(); 764 void OnCopy();
765 void OnCopyImageAt(int x, int y); 765 void OnCopyImageAt(int x, int y);
766 #if defined(OS_MACOSX) 766 #if defined(OS_MACOSX)
767 void OnCopyToFindPboard(); 767 void OnCopyToFindPboard();
768 #endif 768 #endif
769 void OnCut(); 769 void OnCut();
770 void OnCSSInsertRequest(const string16& frame_xpath, 770 void OnCSSInsertRequest(const string16& frame_xpath,
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
1228 // bunch of stuff, you should probably create a helper class and put your 1228 // bunch of stuff, you should probably create a helper class and put your
1229 // data and methods on that to avoid bloating RenderView more. You can 1229 // data and methods on that to avoid bloating RenderView more. You can
1230 // use the Observer interface to filter IPC messages and receive frame change 1230 // use the Observer interface to filter IPC messages and receive frame change
1231 // notifications. 1231 // notifications.
1232 // --------------------------------------------------------------------------- 1232 // ---------------------------------------------------------------------------
1233 1233
1234 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1234 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1235 }; 1235 };
1236 1236
1237 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1237 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698