| 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_AUTOMATION_AUTOMATION_UTIL_H_ | 5 #ifndef CHROME_BROWSER_AUTOMATION_AUTOMATION_UTIL_H_ |
| 6 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_UTIL_H_ | 6 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_UTIL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 | 12 |
| 13 class AutomationId; | 13 class AutomationId; |
| 14 class AutomationProvider; | 14 class AutomationProvider; |
| 15 class Browser; | 15 class Browser; |
| 16 class GURL; | 16 class GURL; |
| 17 class Profile; | 17 class Profile; |
| 18 class TabContentsWrapper; | 18 class TabContents; |
| 19 typedef TabContents TabContentsWrapper; |
| 19 | 20 |
| 20 namespace content { | 21 namespace content { |
| 21 class RenderViewHost; | 22 class RenderViewHost; |
| 22 class WebContents; | 23 class WebContents; |
| 23 } | 24 } |
| 24 | 25 |
| 25 namespace base { | 26 namespace base { |
| 26 class DictionaryValue; | 27 class DictionaryValue; |
| 27 } | 28 } |
| 28 | 29 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 bool GetExtensionForId(const AutomationId& id, | 114 bool GetExtensionForId(const AutomationId& id, |
| 114 Profile* profile, | 115 Profile* profile, |
| 115 const extensions::Extension** extension); | 116 const extensions::Extension** extension); |
| 116 | 117 |
| 117 // Returns whether the given ID refers to an actual automation entity. | 118 // Returns whether the given ID refers to an actual automation entity. |
| 118 bool DoesObjectWithIdExist(const AutomationId& id, Profile* profile); | 119 bool DoesObjectWithIdExist(const AutomationId& id, Profile* profile); |
| 119 | 120 |
| 120 } // namespace automation_util | 121 } // namespace automation_util |
| 121 | 122 |
| 122 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_UTIL_H_ | 123 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_UTIL_H_ |
| OLD | NEW |