OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_JS_TRANSACTION_OBSERVER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_JS_JS_TRANSACTION_OBSERVER_H_ |
6 #define CHROME_BROWSER_SYNC_JS_TRANSACTION_OBSERVER_H_ | 6 #define CHROME_BROWSER_SYNC_JS_JS_TRANSACTION_OBSERVER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/threading/non_thread_safe.h" | 13 #include "base/threading/non_thread_safe.h" |
14 #include "chrome/browser/sync/syncable/transaction_observer.h" | 14 #include "chrome/browser/sync/syncable/transaction_observer.h" |
15 #include "chrome/browser/sync/weak_handle.h" | 15 #include "chrome/browser/sync/weak_handle.h" |
16 | 16 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 51 |
52 void HandleJsEvent( | 52 void HandleJsEvent( |
53 const tracked_objects::Location& from_here, | 53 const tracked_objects::Location& from_here, |
54 const std::string& name, const JsEventDetails& details); | 54 const std::string& name, const JsEventDetails& details); |
55 | 55 |
56 DISALLOW_COPY_AND_ASSIGN(JsTransactionObserver); | 56 DISALLOW_COPY_AND_ASSIGN(JsTransactionObserver); |
57 }; | 57 }; |
58 | 58 |
59 } // namespace browser_sync | 59 } // namespace browser_sync |
60 | 60 |
61 #endif // CHROME_BROWSER_SYNC_JS_TRANSACTION_OBSERVER_H_ | 61 #endif // CHROME_BROWSER_SYNC_JS_JS_TRANSACTION_OBSERVER_H_ |
OLD | NEW |