OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_API_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_API_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_API_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_API_H_ |
7 #pragma once | |
8 | 7 |
9 #include <list> | 8 #include <list> |
10 #include <map> | 9 #include <map> |
11 #include <set> | 10 #include <set> |
12 #include <string> | 11 #include <string> |
13 #include <vector> | 12 #include <vector> |
14 | 13 |
15 #include "base/memory/singleton.h" | 14 #include "base/memory/singleton.h" |
16 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
17 #include "base/time.h" | 16 #include "base/time.h" |
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 virtual void OnQuotaExceeded() OVERRIDE; | 418 virtual void OnQuotaExceeded() OVERRIDE; |
420 virtual bool RunImpl() OVERRIDE; | 419 virtual bool RunImpl() OVERRIDE; |
421 }; | 420 }; |
422 | 421 |
423 // Send updates to |host| with information about what webRequest-related | 422 // Send updates to |host| with information about what webRequest-related |
424 // extensions are installed. | 423 // extensions are installed. |
425 // TODO(mpcomplete): remove. http://crbug.com/100411 | 424 // TODO(mpcomplete): remove. http://crbug.com/100411 |
426 void SendExtensionWebRequestStatusToHost(content::RenderProcessHost* host); | 425 void SendExtensionWebRequestStatusToHost(content::RenderProcessHost* host); |
427 | 426 |
428 #endif // CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_API_H_ | 427 #endif // CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_API_H_ |
OLD | NEW |