| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_BOOKMARKS_TEST_BOOKMARK_CLIENT_H_ | 5 #ifndef COMPONENTS_BOOKMARKS_CORE_TESTS_TEST_BOOKMARK_CLIENT_H_ |
| 6 #define CHROME_BROWSER_BOOKMARKS_TEST_BOOKMARK_CLIENT_H_ | 6 #define COMPONENTS_BOOKMARKS_CORE_TESTS_TEST_BOOKMARK_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "components/bookmarks/core/browser/bookmark_client.h" | 9 #include "components/bookmarks/core/browser/bookmark_client.h" |
| 10 | 10 |
| 11 class BookmarkModel; | 11 class BookmarkModel; |
| 12 | 12 |
| 13 namespace test { | 13 namespace test { |
| 14 | 14 |
| 15 class TestBookmarkClient : public BookmarkClient { | 15 class TestBookmarkClient : public BookmarkClient { |
| 16 public: | 16 public: |
| (...skipping 18 matching lines...) Expand all Loading... |
| 35 virtual void RecordAction(const base::UserMetricsAction& action) OVERRIDE; | 35 virtual void RecordAction(const base::UserMetricsAction& action) OVERRIDE; |
| 36 virtual void NotifyHistoryAboutRemovedBookmarks( | 36 virtual void NotifyHistoryAboutRemovedBookmarks( |
| 37 const std::set<GURL>& removed_bookmark_urls) OVERRIDE; | 37 const std::set<GURL>& removed_bookmark_urls) OVERRIDE; |
| 38 | 38 |
| 39 private: | 39 private: |
| 40 DISALLOW_COPY_AND_ASSIGN(TestBookmarkClient); | 40 DISALLOW_COPY_AND_ASSIGN(TestBookmarkClient); |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 } // namespace test | 43 } // namespace test |
| 44 | 44 |
| 45 #endif // CHROME_BROWSER_BOOKMARKS_TEST_BOOKMARK_CLIENT_H_ | 45 #endif // COMPONENTS_BOOKMARKS_CORE_TESTS_TEST_BOOKMARK_CLIENT_H_ |
| OLD | NEW |