| 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_TEST_PPAPI_PPAPI_TEST_H_ | 5 #ifndef CHROME_TEST_PPAPI_PPAPI_TEST_H_ |
| 6 #define CHROME_TEST_PPAPI_PPAPI_TEST_H_ | 6 #define CHROME_TEST_PPAPI_PPAPI_TEST_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "chrome/test/base/in_process_browser_test.h" | 13 #include "chrome/test/base/in_process_browser_test.h" |
| 14 #include "chrome/test/base/javascript_test_observer.h" | 14 #include "chrome/test/base/javascript_test_observer.h" |
| 15 #include "net/test/spawned_test_server.h" | 15 #include "net/test/spawned_test_server/spawned_test_server.h" |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 class RenderViewHost; | 18 class RenderViewHost; |
| 19 } | 19 } |
| 20 | 20 |
| 21 class PPAPITestMessageHandler : public TestMessageHandler { | 21 class PPAPITestMessageHandler : public TestMessageHandler { |
| 22 public: | 22 public: |
| 23 PPAPITestMessageHandler(); | 23 PPAPITestMessageHandler(); |
| 24 | 24 |
| 25 MessageResponse HandleMessage(const std::string& json); | 25 MessageResponse HandleMessage(const std::string& json); |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 const std::string& test_case) OVERRIDE; | 149 const std::string& test_case) OVERRIDE; |
| 150 }; | 150 }; |
| 151 | 151 |
| 152 class PPAPIBrokerInfoBarTest : public OutOfProcessPPAPITest { | 152 class PPAPIBrokerInfoBarTest : public OutOfProcessPPAPITest { |
| 153 public: | 153 public: |
| 154 // PPAPITestBase override: | 154 // PPAPITestBase override: |
| 155 virtual void SetUpOnMainThread() OVERRIDE; | 155 virtual void SetUpOnMainThread() OVERRIDE; |
| 156 }; | 156 }; |
| 157 | 157 |
| 158 #endif // CHROME_TEST_PPAPI_PPAPI_TEST_H_ | 158 #endif // CHROME_TEST_PPAPI_PPAPI_TEST_H_ |
| OLD | NEW |