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

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

Issue 287009: Move WebDevToolsAgent{Delegate} into the WebKit API.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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
« no previous file with comments | « chrome/renderer/notification_provider.cc ('k') | chrome/renderer/render_view.h » ('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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_PRINT_WEB_VIEW_HELPER_H_ 5 #ifndef CHROME_RENDERER_PRINT_WEB_VIEW_HELPER_H_
6 #define CHROME_RENDERER_PRINT_WEB_VIEW_HELPER_H_ 6 #define CHROME_RENDERER_PRINT_WEB_VIEW_HELPER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/gfx/size.h" 10 #include "base/gfx/size.h"
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 virtual bool acceptsLoadDrops() { return false; } 201 virtual bool acceptsLoadDrops() { return false; }
202 virtual void focusNext() {} 202 virtual void focusNext() {}
203 virtual void focusPrevious() {} 203 virtual void focusPrevious() {}
204 virtual void navigateBackForwardSoon(int offset) {} 204 virtual void navigateBackForwardSoon(int offset) {}
205 virtual int historyBackListCount() { return 0; } 205 virtual int historyBackListCount() { return 0; }
206 virtual int historyForwardListCount() { return 0; } 206 virtual int historyForwardListCount() { return 0; }
207 virtual void didAddHistoryItem() {} 207 virtual void didAddHistoryItem() {}
208 virtual void focusAccessibilityObject( 208 virtual void focusAccessibilityObject(
209 const WebKit::WebAccessibilityObject& object) {} 209 const WebKit::WebAccessibilityObject& object) {}
210 virtual void didUpdateInspectorSettings() {} 210 virtual void didUpdateInspectorSettings() {}
211 virtual WebKit::WebDevToolsAgentClient* devToolsAgentClient() {
212 return NULL;
213 }
211 virtual void queryAutofillSuggestions( 214 virtual void queryAutofillSuggestions(
212 const WebKit::WebNode& node, const WebKit::WebString& name, 215 const WebKit::WebNode& node, const WebKit::WebString& name,
213 const WebKit::WebString& value) {} 216 const WebKit::WebString& value) {}
214 virtual void removeAutofillSuggestions( 217 virtual void removeAutofillSuggestions(
215 const WebKit::WebString& name, const WebKit::WebString& value) {} 218 const WebKit::WebString& name, const WebKit::WebString& value) {}
216 219
217 // WebKit::WebWidgetClient 220 // WebKit::WebWidgetClient
218 virtual void didInvalidateRect(const WebKit::WebRect&) {} 221 virtual void didInvalidateRect(const WebKit::WebRect&) {}
219 virtual void didScrollRect( 222 virtual void didScrollRect(
220 int dx, int dy, const WebKit::WebRect& clipRect) {} 223 int dx, int dy, const WebKit::WebRect& clipRect) {}
(...skipping 14 matching lines...) Expand all
235 scoped_ptr<WebView> print_web_view_; 238 scoped_ptr<WebView> print_web_view_;
236 scoped_ptr<ViewMsg_PrintPages_Params> print_pages_params_; 239 scoped_ptr<ViewMsg_PrintPages_Params> print_pages_params_;
237 base::Time last_cancelled_script_print_; 240 base::Time last_cancelled_script_print_;
238 int user_cancelled_scripted_print_count_; 241 int user_cancelled_scripted_print_count_;
239 242
240 private: 243 private:
241 DISALLOW_COPY_AND_ASSIGN(PrintWebViewHelper); 244 DISALLOW_COPY_AND_ASSIGN(PrintWebViewHelper);
242 }; 245 };
243 246
244 #endif // CHROME_RENDERER_PRINT_WEB_VIEW_HELPER_H_ 247 #endif // CHROME_RENDERER_PRINT_WEB_VIEW_HELPER_H_
OLDNEW
« no previous file with comments | « chrome/renderer/notification_provider.cc ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698