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

Unified Diff: chrome/browser/chromeos/login/signin/merge_session_throttle.h

Issue 370833002: Move resource_type.* from webkit/ to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: chromeos fix Created 6 years, 5 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: chrome/browser/chromeos/login/signin/merge_session_throttle.h
diff --git a/chrome/browser/chromeos/login/signin/merge_session_throttle.h b/chrome/browser/chromeos/login/signin/merge_session_throttle.h
index 8bfbeb7fc1f069917cf3058df3ab1d55dcf21ae5..a208e439421b8a57c41951bb82fa969a70ca6515 100644
--- a/chrome/browser/chromeos/login/signin/merge_session_throttle.h
+++ b/chrome/browser/chromeos/login/signin/merge_session_throttle.h
@@ -11,8 +11,8 @@
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "content/public/browser/resource_throttle.h"
+#include "content/public/common/resource_type.h"
#include "net/base/completion_callback.h"
-#include "webkit/common/resource_type.h"
class Profile;
@@ -36,7 +36,7 @@ class MergeSessionThrottle
typedef base::Closure CompletionCallback;
explicit MergeSessionThrottle(net::URLRequest* request,
- ResourceType::Type resource_type);
+ content::ResourceType::Type resource_type);
virtual ~MergeSessionThrottle();
// content::ResourceThrottle implementation:
@@ -74,14 +74,14 @@ class MergeSessionThrottle
// (for ResourceType::MAIN_FRAME).
// The function must be called from UI thread.
static void DeleayResourceLoadingOnUIThread(
- ResourceType::Type resource_type,
+ content::ResourceType::Type resource_type,
int render_process_id,
int render_view_id,
const GURL& url,
const MergeSessionThrottle::CompletionCallback& callback);
net::URLRequest* request_;
- ResourceType::Type resource_type_;
+ content::ResourceType::Type resource_type_;
// Global counter that keeps the track of session merge status for all
// encountered profiles. This is used to determine if a throttle should

Powered by Google App Engine
This is Rietveld 408576698