| 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_BOOKMARKS_MODULE_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/singleton.h" | 10 #include "base/singleton.h" |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 }; | 101 }; |
| 102 | 102 |
| 103 class CreateBookmarkFunction : public BookmarksFunction { | 103 class CreateBookmarkFunction : public BookmarksFunction { |
| 104 virtual bool RunImpl(); | 104 virtual bool RunImpl(); |
| 105 }; | 105 }; |
| 106 | 106 |
| 107 class MoveBookmarkFunction : public BookmarksFunction { | 107 class MoveBookmarkFunction : public BookmarksFunction { |
| 108 virtual bool RunImpl(); | 108 virtual bool RunImpl(); |
| 109 }; | 109 }; |
| 110 | 110 |
| 111 class SetBookmarkTitleFunction : public BookmarksFunction { | 111 class UpdateBookmarkFunction : public BookmarksFunction { |
| 112 virtual bool RunImpl(); | 112 virtual bool RunImpl(); |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_H_ | 115 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_H_ |
| OLD | NEW |