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

Side by Side Diff: content/public/renderer/render_view.h

Issue 10855151: Gradient overlay for constrained window (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos Created 8 years, 4 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_PUBLIC_RENDERER_RENDER_VIEW_H_ 5 #ifndef CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_
6 #define CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_ 6 #define CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/string16.h" 9 #include "base/string16.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 // once the user dismisses the dialog. 120 // once the user dismisses the dialog.
121 virtual void RunModalAlertDialog(WebKit::WebFrame* frame, 121 virtual void RunModalAlertDialog(WebKit::WebFrame* frame,
122 const WebKit::WebString& message) = 0; 122 const WebKit::WebString& message) = 0;
123 123
124 // The client should handle the navigation externally. 124 // The client should handle the navigation externally.
125 virtual void LoadURLExternally( 125 virtual void LoadURLExternally(
126 WebKit::WebFrame* frame, 126 WebKit::WebFrame* frame,
127 const WebKit::WebURLRequest& request, 127 const WebKit::WebURLRequest& request,
128 WebKit::WebNavigationPolicy policy) = 0; 128 WebKit::WebNavigationPolicy policy) = 0;
129 129
130 // Notifies the renderer that a paint is to be generated for the size
131 // passed in.
132 virtual void Repaint(const gfx::Size& size) = 0;
133
130 protected: 134 protected:
131 virtual ~RenderView() {} 135 virtual ~RenderView() {}
132 }; 136 };
133 137
134 } // namespace content 138 } // namespace content
135 139
136 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_ 140 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/renderer/webview_animating_overlay_browsertest.cc ('k') | content/public/test/render_view_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698