| 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 #include "chrome/browser/ui/webui/help/help_handler.h" | 5 #include "chrome/browser/ui/webui/help/help_handler.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include "grit/chromium_strings.h" | 31 #include "grit/chromium_strings.h" |
| 32 #include "grit/generated_resources.h" | 32 #include "grit/generated_resources.h" |
| 33 #include "grit/google_chrome_strings.h" | 33 #include "grit/google_chrome_strings.h" |
| 34 #include "ui/base/l10n/l10n_util.h" | 34 #include "ui/base/l10n/l10n_util.h" |
| 35 #include "ui/base/resource/resource_bundle.h" | 35 #include "ui/base/resource/resource_bundle.h" |
| 36 #include "v8/include/v8.h" | 36 #include "v8/include/v8.h" |
| 37 #include "webkit/glue/webkit_glue.h" | 37 #include "webkit/glue/webkit_glue.h" |
| 38 #include "webkit/user_agent/user_agent_util.h" | 38 #include "webkit/user_agent/user_agent_util.h" |
| 39 | 39 |
| 40 #if defined(OS_CHROMEOS) | 40 #if defined(OS_CHROMEOS) |
| 41 #include "base/file_util_proxy.h" | 41 #include "base/files/file_util_proxy.h" |
| 42 #include "base/i18n/time_formatting.h" | 42 #include "base/i18n/time_formatting.h" |
| 43 #include "base/sys_info.h" | 43 #include "base/sys_info.h" |
| 44 #include "chrome/browser/chromeos/login/user_manager.h" | 44 #include "chrome/browser/chromeos/login/user_manager.h" |
| 45 #include "chrome/browser/chromeos/settings/cros_settings.h" | 45 #include "chrome/browser/chromeos/settings/cros_settings.h" |
| 46 #include "chrome/browser/prefs/pref_service.h" | 46 #include "chrome/browser/prefs/pref_service.h" |
| 47 #include "chrome/browser/profiles/profile.h" | 47 #include "chrome/browser/profiles/profile.h" |
| 48 #include "content/public/browser/browser_thread.h" | 48 #include "content/public/browser/browser_thread.h" |
| 49 #endif | 49 #endif |
| 50 | 50 |
| 51 using base::ListValue; | 51 using base::ListValue; |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 | 434 |
| 435 // Note that this string will be internationalized. | 435 // Note that this string will be internationalized. |
| 436 string16 build_date = base::TimeFormatFriendlyDate(time); | 436 string16 build_date = base::TimeFormatFriendlyDate(time); |
| 437 g_build_date_string = Value::CreateStringValue(build_date); | 437 g_build_date_string = Value::CreateStringValue(build_date); |
| 438 } | 438 } |
| 439 | 439 |
| 440 web_ui()->CallJavascriptFunction("help.HelpPage.setBuildDate", | 440 web_ui()->CallJavascriptFunction("help.HelpPage.setBuildDate", |
| 441 *g_build_date_string); | 441 *g_build_date_string); |
| 442 } | 442 } |
| 443 #endif // defined(OS_CHROMEOS) | 443 #endif // defined(OS_CHROMEOS) |
| OLD | NEW |