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

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

Issue 342092: Eliminate WebViewImpl's dependency on WebDevToolsAgentImpl.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 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 | « no previous file | 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 virtual bool acceptsLoadDrops() { return false; } 200 virtual bool acceptsLoadDrops() { return false; }
201 virtual void focusNext() {} 201 virtual void focusNext() {}
202 virtual void focusPrevious() {} 202 virtual void focusPrevious() {}
203 virtual void navigateBackForwardSoon(int offset) {} 203 virtual void navigateBackForwardSoon(int offset) {}
204 virtual int historyBackListCount() { return 0; } 204 virtual int historyBackListCount() { return 0; }
205 virtual int historyForwardListCount() { return 0; } 205 virtual int historyForwardListCount() { return 0; }
206 virtual void didAddHistoryItem() {} 206 virtual void didAddHistoryItem() {}
207 virtual void focusAccessibilityObject( 207 virtual void focusAccessibilityObject(
208 const WebKit::WebAccessibilityObject& object) {} 208 const WebKit::WebAccessibilityObject& object) {}
209 virtual void didUpdateInspectorSettings() {} 209 virtual void didUpdateInspectorSettings() {}
210 virtual WebKit::WebDevToolsAgentClient* devToolsAgentClient() {
211 return NULL;
212 }
213 virtual void queryAutofillSuggestions( 210 virtual void queryAutofillSuggestions(
214 const WebKit::WebNode& node, const WebKit::WebString& name, 211 const WebKit::WebNode& node, const WebKit::WebString& name,
215 const WebKit::WebString& value) {} 212 const WebKit::WebString& value) {}
216 virtual void removeAutofillSuggestions( 213 virtual void removeAutofillSuggestions(
217 const WebKit::WebString& name, const WebKit::WebString& value) {} 214 const WebKit::WebString& name, const WebKit::WebString& value) {}
218 215
219 // WebKit::WebWidgetClient 216 // WebKit::WebWidgetClient
220 virtual void didInvalidateRect(const WebKit::WebRect&) {} 217 virtual void didInvalidateRect(const WebKit::WebRect&) {}
221 virtual void didScrollRect( 218 virtual void didScrollRect(
222 int dx, int dy, const WebKit::WebRect& clipRect) {} 219 int dx, int dy, const WebKit::WebRect& clipRect) {}
(...skipping 14 matching lines...) Expand all
237 WebKit::WebView* print_web_view_; 234 WebKit::WebView* print_web_view_;
238 scoped_ptr<ViewMsg_PrintPages_Params> print_pages_params_; 235 scoped_ptr<ViewMsg_PrintPages_Params> print_pages_params_;
239 base::Time last_cancelled_script_print_; 236 base::Time last_cancelled_script_print_;
240 int user_cancelled_scripted_print_count_; 237 int user_cancelled_scripted_print_count_;
241 238
242 private: 239 private:
243 DISALLOW_COPY_AND_ASSIGN(PrintWebViewHelper); 240 DISALLOW_COPY_AND_ASSIGN(PrintWebViewHelper);
244 }; 241 };
245 242
246 #endif // CHROME_RENDERER_PRINT_WEB_VIEW_HELPER_H_ 243 #endif // CHROME_RENDERER_PRINT_WEB_VIEW_HELPER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/render_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698