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

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

Issue 1018383002: Make NavigationParams clearer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 #if defined(COMPILER_MSVC) 69 #if defined(COMPILER_MSVC)
70 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the 70 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the
71 // root. VS warns when we inherit the WebWidgetClient method implementations 71 // root. VS warns when we inherit the WebWidgetClient method implementations
72 // from RenderWidget. It's safe to ignore that warning. 72 // from RenderWidget. It's safe to ignore that warning.
73 #pragma warning(disable: 4250) 73 #pragma warning(disable: 4250)
74 #endif 74 #endif
75 75
76 class PepperDeviceTest; 76 class PepperDeviceTest;
77 class SkBitmap; 77 class SkBitmap;
78 struct PP_NetAddress_Private; 78 struct PP_NetAddress_Private;
79 struct FrameMsg_Navigate_Params;
80 struct ViewMsg_New_Params; 79 struct ViewMsg_New_Params;
81 struct ViewMsg_PostMessage_Params; 80 struct ViewMsg_PostMessage_Params;
82 struct ViewMsg_Resize_Params; 81 struct ViewMsg_Resize_Params;
83 struct ViewMsg_StopFinding_Params; 82 struct ViewMsg_StopFinding_Params;
84 83
85 namespace base { 84 namespace base {
86 class CommandLine; 85 class CommandLine;
87 } 86 }
88 87
89 namespace blink { 88 namespace blink {
(...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after
1042 // use the Observer interface to filter IPC messages and receive frame change 1041 // use the Observer interface to filter IPC messages and receive frame change
1043 // notifications. 1042 // notifications.
1044 // --------------------------------------------------------------------------- 1043 // ---------------------------------------------------------------------------
1045 1044
1046 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1045 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1047 }; 1046 };
1048 1047
1049 } // namespace content 1048 } // namespace content
1050 1049
1051 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1050 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698