| Index: chrome/browser/extensions/api/web_request/web_request_api.cc
|
| diff --git a/chrome/browser/extensions/api/web_request/web_request_api.cc b/chrome/browser/extensions/api/web_request/web_request_api.cc
|
| index 3c1e586a18ef7041ae83c94ad9412b67b5979c37..b63108b24469b5bb808f54b2fd5da94e98aae9db 100644
|
| --- a/chrome/browser/extensions/api/web_request/web_request_api.cc
|
| +++ b/chrome/browser/extensions/api/web_request/web_request_api.cc
|
| @@ -1655,12 +1655,6 @@ bool WebRequestEventHandled::RunImpl() {
|
| return true;
|
| }
|
|
|
| -bool WebRequestHandlerBehaviorChanged::RunImpl() {
|
| - BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
|
| - base::Bind(&ClearCacheOnNavigationOnUI));
|
| - return true;
|
| -}
|
| -
|
| void WebRequestHandlerBehaviorChanged::GetQuotaLimitHeuristics(
|
| QuotaLimitHeuristics* heuristics) const {
|
| QuotaLimitHeuristic::Config config = {
|
| @@ -1690,6 +1684,12 @@ void WebRequestHandlerBehaviorChanged::OnQuotaExceeded() {
|
| Run();
|
| }
|
|
|
| +bool WebRequestHandlerBehaviorChanged::RunImpl() {
|
| + BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
|
| + base::Bind(&ClearCacheOnNavigationOnUI));
|
| + return true;
|
| +}
|
| +
|
| void SendExtensionWebRequestStatusToHost(content::RenderProcessHost* host) {
|
| Profile* profile = Profile::FromBrowserContext(host->GetBrowserContext());
|
| if (!profile || !profile->GetExtensionService())
|
|
|