Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_CHROMEOS_ARC_ARC_NAVIGATION_THROTTLE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_ARC_UI_ARC_NAVIGATION_THROTTLE_H_ |
|
Yusuke Sato
2016/10/20 20:49:04
This one does not have any code that directly mani
Luis Héctor Chávez
2016/10/20 22:30:22
Done.
| |
| 6 #define CHROME_BROWSER_CHROMEOS_ARC_ARC_NAVIGATION_THROTTLE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_ARC_UI_ARC_NAVIGATION_THROTTLE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "components/arc/intent_helper/activity_icon_loader.h" | 16 #include "components/arc/intent_helper/activity_icon_loader.h" |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 85 CloseReason previous_user_action_; | 85 CloseReason previous_user_action_; |
| 86 | 86 |
| 87 // This has to be the last member of the class. | 87 // This has to be the last member of the class. |
| 88 base::WeakPtrFactory<ArcNavigationThrottle> weak_ptr_factory_; | 88 base::WeakPtrFactory<ArcNavigationThrottle> weak_ptr_factory_; |
| 89 | 89 |
| 90 DISALLOW_COPY_AND_ASSIGN(ArcNavigationThrottle); | 90 DISALLOW_COPY_AND_ASSIGN(ArcNavigationThrottle); |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 } // namespace arc | 93 } // namespace arc |
| 94 | 94 |
| 95 #endif // CHROME_BROWSER_CHROMEOS_ARC_ARC_NAVIGATION_THROTTLE_H_ | 95 #endif // CHROME_BROWSER_CHROMEOS_ARC_UI_ARC_NAVIGATION_THROTTLE_H_ |
| OLD | NEW |