| 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_API_TABS_TABS_API_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_API_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_API_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_API_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "chrome/browser/extensions/chrome_extension_function.h" | 12 #include "chrome/browser/extensions/chrome_extension_function.h" |
| 13 #include "chrome/browser/extensions/chrome_extension_function_details.h" | 13 #include "chrome/browser/extensions/chrome_extension_function_details.h" |
| 14 #include "chrome/common/extensions/api/tabs.h" | 14 #include "chrome/common/extensions/api/tabs.h" |
| 15 #include "components/zoom/zoom_controller.h" | 15 #include "components/zoom/zoom_controller.h" |
| 16 #include "content/public/browser/notification_observer.h" | 16 #include "content/public/browser/notification_observer.h" |
| 17 #include "content/public/browser/notification_registrar.h" | 17 #include "content/public/browser/notification_registrar.h" |
| 18 #include "extensions/browser/api/execute_code_function.h" | 18 #include "extensions/browser/api/execute_code_function.h" |
| 19 #include "extensions/browser/api/web_contents_capture_client.h" | 19 #include "extensions/browser/api/web_contents_capture_client.h" |
| 20 #include "extensions/browser/extension_function.h" | 20 #include "extensions/browser/extension_function.h" |
| 21 #include "extensions/common/extension_resource.h" | 21 #include "extensions/common/extension_resource.h" |
| 22 #include "extensions/common/user_script.h" | 22 #include "extensions/common/user_script.h" |
| 23 #include "url/gurl.h" | 23 #include "url/gurl.h" |
| 24 | 24 |
| 25 class GURL; | 25 class GURL; |
| 26 class SkBitmap; | 26 class SkBitmap; |
| 27 class TabStripModel; | 27 class TabStripModel; |
| 28 | 28 |
| 29 namespace base { | |
| 30 class DictionaryValue; | |
| 31 } | |
| 32 | |
| 33 namespace content { | 29 namespace content { |
| 34 class WebContents; | 30 class WebContents; |
| 35 } | 31 } |
| 36 | 32 |
| 37 namespace ui { | 33 namespace ui { |
| 38 class ListSelectionModel; | 34 class ListSelectionModel; |
| 39 } | 35 } |
| 40 | 36 |
| 41 namespace user_prefs { | 37 namespace user_prefs { |
| 42 class PrefRegistrySyncable; | 38 class PrefRegistrySyncable; |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 | 332 |
| 337 // ExtensionFunction: | 333 // ExtensionFunction: |
| 338 ExtensionFunction::ResponseAction Run() override; | 334 ExtensionFunction::ResponseAction Run() override; |
| 339 | 335 |
| 340 DISALLOW_COPY_AND_ASSIGN(TabsDiscardFunction); | 336 DISALLOW_COPY_AND_ASSIGN(TabsDiscardFunction); |
| 341 }; | 337 }; |
| 342 | 338 |
| 343 } // namespace extensions | 339 } // namespace extensions |
| 344 | 340 |
| 345 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_API_H_ | 341 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_API_H_ |
| OLD | NEW |