| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_TABS_MODULE_H__ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_H__ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_H__ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_H__ |
| 7 | 7 |
| 8 #include "chrome/browser/extensions/extension_function.h" | 8 #include "chrome/browser/extensions/extension_function.h" |
| 9 | 9 |
| 10 class Browser; | 10 class Browser; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 }; | 38 }; |
| 39 class GetLastFocusedWindowFunction : public SyncExtensionFunction { | 39 class GetLastFocusedWindowFunction : public SyncExtensionFunction { |
| 40 virtual bool RunImpl(); | 40 virtual bool RunImpl(); |
| 41 }; | 41 }; |
| 42 class GetAllWindowsFunction : public SyncExtensionFunction { | 42 class GetAllWindowsFunction : public SyncExtensionFunction { |
| 43 virtual bool RunImpl(); | 43 virtual bool RunImpl(); |
| 44 }; | 44 }; |
| 45 class CreateWindowFunction : public SyncExtensionFunction { | 45 class CreateWindowFunction : public SyncExtensionFunction { |
| 46 virtual bool RunImpl(); | 46 virtual bool RunImpl(); |
| 47 }; | 47 }; |
| 48 class UpdateWindowFunction : public SyncExtensionFunction { |
| 49 virtual bool RunImpl(); |
| 50 }; |
| 48 class RemoveWindowFunction : public SyncExtensionFunction { | 51 class RemoveWindowFunction : public SyncExtensionFunction { |
| 49 virtual bool RunImpl(); | 52 virtual bool RunImpl(); |
| 50 }; | 53 }; |
| 51 | 54 |
| 52 // Tabs | 55 // Tabs |
| 53 class GetTabFunction : public SyncExtensionFunction { | 56 class GetTabFunction : public SyncExtensionFunction { |
| 54 virtual bool RunImpl(); | 57 virtual bool RunImpl(); |
| 55 }; | 58 }; |
| 56 class GetSelectedTabFunction : public SyncExtensionFunction { | 59 class GetSelectedTabFunction : public SyncExtensionFunction { |
| 57 virtual bool RunImpl(); | 60 virtual bool RunImpl(); |
| 58 }; | 61 }; |
| 59 class GetAllTabsInWindowFunction : public SyncExtensionFunction { | 62 class GetAllTabsInWindowFunction : public SyncExtensionFunction { |
| 60 virtual bool RunImpl(); | 63 virtual bool RunImpl(); |
| 61 }; | 64 }; |
| 62 class CreateTabFunction : public SyncExtensionFunction { | 65 class CreateTabFunction : public SyncExtensionFunction { |
| 63 virtual bool RunImpl(); | 66 virtual bool RunImpl(); |
| 64 }; | 67 }; |
| 65 class UpdateTabFunction : public SyncExtensionFunction { | 68 class UpdateTabFunction : public SyncExtensionFunction { |
| 66 virtual bool RunImpl(); | 69 virtual bool RunImpl(); |
| 67 }; | 70 }; |
| 68 class MoveTabFunction : public SyncExtensionFunction { | 71 class MoveTabFunction : public SyncExtensionFunction { |
| 69 virtual bool RunImpl(); | 72 virtual bool RunImpl(); |
| 70 }; | 73 }; |
| 71 class RemoveTabFunction : public SyncExtensionFunction { | 74 class RemoveTabFunction : public SyncExtensionFunction { |
| 72 virtual bool RunImpl(); | 75 virtual bool RunImpl(); |
| 73 }; | 76 }; |
| 74 | 77 |
| 75 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_H__ | 78 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_H__ |
| OLD | NEW |