| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_TEST_CHROMEDRIVER_WEB_VIEW_IMPL_H_ | 5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_IMPL_H_ |
| 6 #define CHROME_TEST_CHROMEDRIVER_WEB_VIEW_IMPL_H_ | 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_IMPL_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "chrome/test/chromedriver/web_view.h" | 14 #include "chrome/test/chromedriver/chrome/web_view.h" |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 class DictionaryValue; | 17 class DictionaryValue; |
| 18 class ListValue; | 18 class ListValue; |
| 19 class Value; | 19 class Value; |
| 20 } | 20 } |
| 21 | 21 |
| 22 class DevToolsClient; | 22 class DevToolsClient; |
| 23 class DomTracker; | 23 class DomTracker; |
| 24 class FrameTracker; | 24 class FrameTracker; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 Status ParseCallFunctionResult(const base::Value& temp_result, | 102 Status ParseCallFunctionResult(const base::Value& temp_result, |
| 103 scoped_ptr<base::Value>* result); | 103 scoped_ptr<base::Value>* result); |
| 104 Status GetNodeIdFromFunction(DevToolsClient* client, | 104 Status GetNodeIdFromFunction(DevToolsClient* client, |
| 105 int context_id, | 105 int context_id, |
| 106 const std::string& function, | 106 const std::string& function, |
| 107 const base::ListValue& args, | 107 const base::ListValue& args, |
| 108 int* node_id); | 108 int* node_id); |
| 109 | 109 |
| 110 } // namespace internal | 110 } // namespace internal |
| 111 | 111 |
| 112 #endif // CHROME_TEST_CHROMEDRIVER_WEB_VIEW_IMPL_H_ | 112 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_IMPL_H_ |
| OLD | NEW |