| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_INSTANT_INSTANT_UNLOAD_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_INSTANT_INSTANT_UNLOAD_HANDLER_H_ |
| 6 #define CHROME_BROWSER_INSTANT_INSTANT_UNLOAD_HANDLER_H_ | 6 #define CHROME_BROWSER_INSTANT_INSTANT_UNLOAD_HANDLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/scoped_vector.h" | 9 #include "base/scoped_vector.h" |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 // TODO(sky): browser really needs to wait to close until there are no more | 39 // TODO(sky): browser really needs to wait to close until there are no more |
| 40 // tabs managed by InstantUnloadHandler. | 40 // tabs managed by InstantUnloadHandler. |
| 41 Browser* browser_; | 41 Browser* browser_; |
| 42 | 42 |
| 43 ScopedVector<TabContentsDelegateImpl> delegates_; | 43 ScopedVector<TabContentsDelegateImpl> delegates_; |
| 44 | 44 |
| 45 DISALLOW_COPY_AND_ASSIGN(InstantUnloadHandler); | 45 DISALLOW_COPY_AND_ASSIGN(InstantUnloadHandler); |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 #endif // CHROME_BROWSER_INSTANT_INSTANT_UNLOAD_HANDLER_H_ | 48 #endif // CHROME_BROWSER_INSTANT_INSTANT_UNLOAD_HANDLER_H_ |
| OLD | NEW |