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_CHROMEOS_OFFLINE_OFFLINE_LOAD_PAGE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_OFFLINE_OFFLINE_LOAD_PAGE_H_ |
6 #define CHROME_BROWSER_CHROMEOS_OFFLINE_OFFLINE_LOAD_PAGE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_OFFLINE_OFFLINE_LOAD_PAGE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 base::DictionaryValue* strings) const; | 59 base::DictionaryValue* strings) const; |
60 | 60 |
61 // True if there is a mobile network is available but | 61 // True if there is a mobile network is available but |
62 // has not been activated. | 62 // has not been activated. |
63 bool ShowActivationMessage(); | 63 bool ShowActivationMessage(); |
64 | 64 |
65 scoped_refptr<OfflineResourceHandler> handler_; | 65 scoped_refptr<OfflineResourceHandler> handler_; |
66 | 66 |
67 // True if the proceed is chosen. | 67 // True if the proceed is chosen. |
68 bool proceeded_; | 68 bool proceeded_; |
69 ScopedRunnableMethodFactory<OfflineLoadPage> method_factory_; | |
70 | 69 |
71 bool in_test_; | 70 bool in_test_; |
72 | 71 |
73 DISALLOW_COPY_AND_ASSIGN(OfflineLoadPage); | 72 DISALLOW_COPY_AND_ASSIGN(OfflineLoadPage); |
74 }; | 73 }; |
75 | 74 |
76 } // namespace chromeos | 75 } // namespace chromeos |
77 | 76 |
78 #endif // CHROME_BROWSER_CHROMEOS_OFFLINE_OFFLINE_LOAD_PAGE_H_ | 77 #endif // CHROME_BROWSER_CHROMEOS_OFFLINE_OFFLINE_LOAD_PAGE_H_ |
OLD | NEW |