| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_ | |
| 6 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_ | |
| 7 | |
| 8 #include "ipc/ipc_message.h" | |
| 9 | |
| 10 class Profile; | |
| 11 class ChromeURLRequestContextGetter; | |
| 12 class AutomationResourceMessageFilter; | |
| 13 | |
| 14 namespace AutomationRequestContext { | |
| 15 | |
| 16 // Returns the URL request context to be used by HTTP requests handled over | |
| 17 // the automation channel. | |
| 18 ChromeURLRequestContextGetter* CreateAutomationURLRequestContextForTab( | |
| 19 int tab_handle, | |
| 20 Profile* profile, | |
| 21 AutomationResourceMessageFilter* automation_client); | |
| 22 | |
| 23 } | |
| 24 | |
| 25 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_ | |
| OLD | NEW |