| 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 #include "chrome/browser/browser_about_handler.h" | 5 #include "chrome/browser/browser_about_handler.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" | 40 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" |
| 41 #include "chrome/common/about_handler.h" | 41 #include "chrome/common/about_handler.h" |
| 42 #include "chrome/common/chrome_paths.h" | 42 #include "chrome/common/chrome_paths.h" |
| 43 #include "chrome/common/chrome_version_info.h" | 43 #include "chrome/common/chrome_version_info.h" |
| 44 #include "chrome/common/jstemplate_builder.h" | 44 #include "chrome/common/jstemplate_builder.h" |
| 45 #include "chrome/common/net/gaia/google_service_auth_error.h" | 45 #include "chrome/common/net/gaia/google_service_auth_error.h" |
| 46 #include "chrome/common/render_messages.h" | 46 #include "chrome/common/render_messages.h" |
| 47 #include "chrome/common/url_constants.h" | 47 #include "chrome/common/url_constants.h" |
| 48 #include "content/browser/gpu/gpu_process_host.h" | 48 #include "content/browser/gpu/gpu_process_host.h" |
| 49 #include "content/browser/plugin_service.h" | 49 #include "content/browser/plugin_service.h" |
| 50 #include "content/browser/renderer_host/render_process_host.h" | |
| 51 #include "content/browser/renderer_host/render_view_host.h" | 50 #include "content/browser/renderer_host/render_view_host.h" |
| 52 #include "content/browser/sensors/sensors_provider.h" | 51 #include "content/browser/sensors/sensors_provider.h" |
| 53 #include "content/common/gpu/gpu_messages.h" | 52 #include "content/common/gpu/gpu_messages.h" |
| 54 #include "content/public/browser/browser_thread.h" | 53 #include "content/public/browser/browser_thread.h" |
| 54 #include "content/public/browser/render_process_host.h" |
| 55 #include "content/public/common/content_client.h" | 55 #include "content/public/common/content_client.h" |
| 56 #include "crypto/nss_util.h" | 56 #include "crypto/nss_util.h" |
| 57 #include "googleurl/src/gurl.h" | 57 #include "googleurl/src/gurl.h" |
| 58 #include "grit/browser_resources.h" | 58 #include "grit/browser_resources.h" |
| 59 #include "grit/chromium_strings.h" | 59 #include "grit/chromium_strings.h" |
| 60 #include "grit/generated_resources.h" | 60 #include "grit/generated_resources.h" |
| 61 #include "grit/locale_settings.h" | 61 #include "grit/locale_settings.h" |
| 62 #include "net/base/escape.h" | 62 #include "net/base/escape.h" |
| 63 #include "net/base/net_util.h" | 63 #include "net/base/net_util.h" |
| 64 #include "ui/base/l10n/l10n_util.h" | 64 #include "ui/base/l10n/l10n_util.h" |
| (...skipping 1547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1612 return false; | 1612 return false; |
| 1613 } | 1613 } |
| 1614 | 1614 |
| 1615 std::vector<std::string> ChromePaths() { | 1615 std::vector<std::string> ChromePaths() { |
| 1616 std::vector<std::string> paths; | 1616 std::vector<std::string> paths; |
| 1617 paths.reserve(arraysize(kChromePaths)); | 1617 paths.reserve(arraysize(kChromePaths)); |
| 1618 for (size_t i = 0; i < arraysize(kChromePaths); i++) | 1618 for (size_t i = 0; i < arraysize(kChromePaths); i++) |
| 1619 paths.push_back(kChromePaths[i]); | 1619 paths.push_back(kChromePaths[i]); |
| 1620 return paths; | 1620 return paths; |
| 1621 } | 1621 } |
| OLD | NEW |