| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 | 4 |
| 5 #ifndef CHROME_BROWSER_PROFILE_RESETTER_RESETTABLE_SETTINGS_SNAPSHOT_H_ | 5 #ifndef CHROME_BROWSER_PROFILE_RESETTER_RESETTABLE_SETTINGS_SNAPSHOT_H_ |
| 6 #define CHROME_BROWSER_PROFILE_RESETTER_RESETTABLE_SETTINGS_SNAPSHOT_H_ | 6 #define CHROME_BROWSER_PROFILE_RESETTER_RESETTABLE_SETTINGS_SNAPSHOT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 15 #include "base/strings/string_split.h" | 15 #include "base/strings/string_split.h" |
| 16 #include "chrome/browser/prefs/session_startup_pref.h" | 16 #include "chrome/browser/prefs/session_startup_pref.h" |
| 17 #include "chrome/browser/profile_resetter/profile_resetter.h" | 17 #include "chrome/browser/profile_resetter/profile_resetter.h" |
| 18 | 18 |
| 19 namespace base { | 19 namespace base { |
| 20 class ListValue; | 20 class ListValue; |
| 21 } | 21 } |
| 22 namespace reset_report { | 22 namespace reset_report { |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 void SendSettingsFeedbackProto(const reset_report::ChromeResetReport& report, | 144 void SendSettingsFeedbackProto(const reset_report::ChromeResetReport& report, |
| 145 Profile* profile); | 145 Profile* profile); |
| 146 | 146 |
| 147 // Returns list of key/value pairs for all available reported information | 147 // Returns list of key/value pairs for all available reported information |
| 148 // from the |profile| and some additional fields. | 148 // from the |profile| and some additional fields. |
| 149 scoped_ptr<base::ListValue> GetReadableFeedbackForSnapshot( | 149 scoped_ptr<base::ListValue> GetReadableFeedbackForSnapshot( |
| 150 Profile* profile, | 150 Profile* profile, |
| 151 const ResettableSettingsSnapshot& snapshot); | 151 const ResettableSettingsSnapshot& snapshot); |
| 152 | 152 |
| 153 #endif // CHROME_BROWSER_PROFILE_RESETTER_RESETTABLE_SETTINGS_SNAPSHOT_H_ | 153 #endif // CHROME_BROWSER_PROFILE_RESETTER_RESETTABLE_SETTINGS_SNAPSHOT_H_ |
| OLD | NEW |