| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef CHROME_BROWSER_CHROMEOS_FIRST_RUN_DRIVE_FIRST_RUN_CONTROLLER_H_ | 4 #ifndef CHROME_BROWSER_CHROMEOS_FIRST_RUN_DRIVE_FIRST_RUN_CONTROLLER_H_ |
| 5 #define CHROME_BROWSER_CHROMEOS_FIRST_RUN_DRIVE_FIRST_RUN_CONTROLLER_H_ | 5 #define CHROME_BROWSER_CHROMEOS_FIRST_RUN_DRIVE_FIRST_RUN_CONTROLLER_H_ |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/macros.h" |
| 8 #include "base/observer_list.h" | 8 #include "base/observer_list.h" |
| 9 #include "base/timer/timer.h" | 9 #include "base/timer/timer.h" |
| 10 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
| 11 | 11 |
| 12 namespace chromeos { | 12 namespace chromeos { |
| 13 | 13 |
| 14 class DriveWebContentsManager; | 14 class DriveWebContentsManager; |
| 15 | 15 |
| 16 // This class is responsible for kicking off the Google Drive offline | 16 // This class is responsible for kicking off the Google Drive offline |
| 17 // initialization process. There is an initial delay to avoid contention when | 17 // initialization process. There is an initial delay to avoid contention when |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 int web_contents_timeout_secs_; | 87 int web_contents_timeout_secs_; |
| 88 std::string drive_offline_endpoint_url_; | 88 std::string drive_offline_endpoint_url_; |
| 89 std::string drive_hosted_app_id_; | 89 std::string drive_hosted_app_id_; |
| 90 | 90 |
| 91 DISALLOW_COPY_AND_ASSIGN(DriveFirstRunController); | 91 DISALLOW_COPY_AND_ASSIGN(DriveFirstRunController); |
| 92 }; | 92 }; |
| 93 | 93 |
| 94 } // namespace chromeos | 94 } // namespace chromeos |
| 95 | 95 |
| 96 #endif // CHROME_BROWSER_CHROMEOS_FIRST_RUN_DRIVE_FIRST_RUN_CONTROLLER_H_ | 96 #endif // CHROME_BROWSER_CHROMEOS_FIRST_RUN_DRIVE_FIRST_RUN_CONTROLLER_H_ |
| OLD | NEW |