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_EXTENSION_APITEST_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_APITEST_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_APITEST_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_APITEST_H_ |
7 #pragma once | |
8 | 7 |
9 #include <deque> | 8 #include <deque> |
10 #include <string> | 9 #include <string> |
11 | 10 |
12 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
13 #include "base/values.h" | 12 #include "base/values.h" |
14 #include "chrome/browser/extensions/extension_browsertest.h" | 13 #include "chrome/browser/extensions/extension_browsertest.h" |
15 #include "content/public/browser/notification_registrar.h" | 14 #include "content/public/browser/notification_registrar.h" |
16 | 15 |
17 class FilePath; | 16 class FilePath; |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 // apps (if any). | 176 // apps (if any). |
178 class PlatformAppApiTest : public ExtensionApiTest { | 177 class PlatformAppApiTest : public ExtensionApiTest { |
179 public: | 178 public: |
180 PlatformAppApiTest(); | 179 PlatformAppApiTest(); |
181 virtual ~PlatformAppApiTest(); | 180 virtual ~PlatformAppApiTest(); |
182 | 181 |
183 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; | 182 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; |
184 }; | 183 }; |
185 | 184 |
186 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_APITEST_H_ | 185 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_APITEST_H_ |
OLD | NEW |