| 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_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 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/task.h" | |
| 13 #include "chrome/browser/tab_contents/chrome_interstitial_page.h" | 12 #include "chrome/browser/tab_contents/chrome_interstitial_page.h" |
| 14 #include "net/base/network_change_notifier.h" | 13 #include "net/base/network_change_notifier.h" |
| 15 | 14 |
| 16 class Extension; | 15 class Extension; |
| 17 class OfflineResourceHandler; | 16 class OfflineResourceHandler; |
| 18 | 17 |
| 19 namespace base { | 18 namespace base { |
| 20 class DictionaryValue; | 19 class DictionaryValue; |
| 21 } | 20 } |
| 22 | 21 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 bool proceeded_; | 66 bool proceeded_; |
| 68 | 67 |
| 69 bool in_test_; | 68 bool in_test_; |
| 70 | 69 |
| 71 DISALLOW_COPY_AND_ASSIGN(OfflineLoadPage); | 70 DISALLOW_COPY_AND_ASSIGN(OfflineLoadPage); |
| 72 }; | 71 }; |
| 73 | 72 |
| 74 } // namespace chromeos | 73 } // namespace chromeos |
| 75 | 74 |
| 76 #endif // CHROME_BROWSER_CHROMEOS_OFFLINE_OFFLINE_LOAD_PAGE_H_ | 75 #endif // CHROME_BROWSER_CHROMEOS_OFFLINE_OFFLINE_LOAD_PAGE_H_ |
| OLD | NEW |