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

Side by Side Diff: chrome/renderer/chrome_render_view_observer.h

Issue 57563004: Merge r232231: Expose WebGL extension WEBGL_debug_renderer_info to Google domains (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1650/src/
Patch Set: Created 7 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
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/chrome_render_view_observer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ 5 #ifndef CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_
6 #define CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ 6 #define CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 virtual bool allowReadFromClipboard(WebKit::WebFrame* frame, 103 virtual bool allowReadFromClipboard(WebKit::WebFrame* frame,
104 bool default_value); 104 bool default_value);
105 virtual bool allowWriteToClipboard(WebKit::WebFrame* frame, 105 virtual bool allowWriteToClipboard(WebKit::WebFrame* frame,
106 bool default_value); 106 bool default_value);
107 virtual bool allowWebComponents(const WebKit::WebDocument&, bool); 107 virtual bool allowWebComponents(const WebKit::WebDocument&, bool);
108 virtual bool allowHTMLNotifications( 108 virtual bool allowHTMLNotifications(
109 const WebKit::WebDocument& document); 109 const WebKit::WebDocument& document);
110 virtual bool allowMutationEvents(const WebKit::WebDocument&, 110 virtual bool allowMutationEvents(const WebKit::WebDocument&,
111 bool default_value); 111 bool default_value);
112 virtual bool allowPushState(const WebKit::WebDocument&); 112 virtual bool allowPushState(const WebKit::WebDocument&);
113 virtual bool allowWebGLDebugRendererInfo(WebKit::WebFrame* frame);
113 virtual void didNotAllowPlugins(WebKit::WebFrame* frame); 114 virtual void didNotAllowPlugins(WebKit::WebFrame* frame);
114 virtual void didNotAllowScript(WebKit::WebFrame* frame); 115 virtual void didNotAllowScript(WebKit::WebFrame* frame);
115 virtual bool allowDisplayingInsecureContent( 116 virtual bool allowDisplayingInsecureContent(
116 WebKit::WebFrame* frame, 117 WebKit::WebFrame* frame,
117 bool allowed_per_settings, 118 bool allowed_per_settings,
118 const WebKit::WebSecurityOrigin& context, 119 const WebKit::WebSecurityOrigin& context,
119 const WebKit::WebURL& url); 120 const WebKit::WebURL& url);
120 virtual bool allowRunningInsecureContent( 121 virtual bool allowRunningInsecureContent(
121 WebKit::WebFrame* frame, 122 WebKit::WebFrame* frame,
122 bool allowed_per_settings, 123 bool allowed_per_settings,
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 // A color page overlay when visually de-emaphasized. 208 // A color page overlay when visually de-emaphasized.
208 scoped_ptr<WebViewColorOverlay> dimmed_color_overlay_; 209 scoped_ptr<WebViewColorOverlay> dimmed_color_overlay_;
209 210
210 // Used to delay calling CapturePageInfo. 211 // Used to delay calling CapturePageInfo.
211 base::Timer capture_timer_; 212 base::Timer capture_timer_;
212 213
213 DISALLOW_COPY_AND_ASSIGN(ChromeRenderViewObserver); 214 DISALLOW_COPY_AND_ASSIGN(ChromeRenderViewObserver);
214 }; 215 };
215 216
216 #endif // CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ 217 #endif // CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_
OLDNEW
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/chrome_render_view_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698