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_SYNC_GLUE_BOOKMARK_DATA_TYPE_CONTROLLER_H__ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_BOOKMARK_DATA_TYPE_CONTROLLER_H__ |
6 #define CHROME_BROWSER_SYNC_GLUE_BOOKMARK_DATA_TYPE_CONTROLLER_H__ | 6 #define CHROME_BROWSER_SYNC_GLUE_BOOKMARK_DATA_TYPE_CONTROLLER_H__ |
7 #pragma once | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 | 9 |
11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
12 #include "chrome/browser/sync/glue/frontend_data_type_controller.h" | 11 #include "chrome/browser/sync/glue/frontend_data_type_controller.h" |
13 #include "content/public/browser/notification_observer.h" | 12 #include "content/public/browser/notification_observer.h" |
14 #include "content/public/browser/notification_registrar.h" | 13 #include "content/public/browser/notification_registrar.h" |
15 | 14 |
16 namespace browser_sync { | 15 namespace browser_sync { |
17 | 16 |
(...skipping 27 matching lines...) Expand all Loading... |
45 bool DependentsLoaded(); | 44 bool DependentsLoaded(); |
46 | 45 |
47 content::NotificationRegistrar registrar_; | 46 content::NotificationRegistrar registrar_; |
48 | 47 |
49 DISALLOW_COPY_AND_ASSIGN(BookmarkDataTypeController); | 48 DISALLOW_COPY_AND_ASSIGN(BookmarkDataTypeController); |
50 }; | 49 }; |
51 | 50 |
52 } // namespace browser_sync | 51 } // namespace browser_sync |
53 | 52 |
54 #endif // CHROME_BROWSER_SYNC_GLUE_BOOKMARK_DATA_TYPE_CONTROLLER_H__ | 53 #endif // CHROME_BROWSER_SYNC_GLUE_BOOKMARK_DATA_TYPE_CONTROLLER_H__ |
OLD | NEW |