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

Unified Diff: webkit/tools/test_shell/test_navigation_controller.h

Issue 115575: Move ExtraData from WebRequest to WebDataSource.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: webkit/tools/test_shell/test_navigation_controller.h
===================================================================
--- webkit/tools/test_shell/test_navigation_controller.h (revision 16382)
+++ webkit/tools/test_shell/test_navigation_controller.h (working copy)
@@ -12,17 +12,16 @@
#include "base/linked_ptr.h"
#include "base/ref_counted.h"
#include "googleurl/src/gurl.h"
-#include "webkit/glue/weburlrequest.h"
+#include "webkit/glue/webdatasource.h"
class GURL;
class TestShell;
// Associated with browser-initated navigations to hold tracking data.
-class TestShellExtraRequestData : public WebRequest::ExtraData {
+class TestShellExtraData : public WebDataSource::ExtraData {
public:
- TestShellExtraRequestData(int32 pending_page_id)
- : WebRequest::ExtraData(),
- pending_page_id(pending_page_id),
+ TestShellExtraData(int32 pending_page_id)
+ : pending_page_id(pending_page_id),
request_committed(false) {
}

Powered by Google App Engine
This is Rietveld 408576698