OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/gcm_internals_ui.h" | 5 #include "chrome/browser/ui/webui/gcm_internals_ui.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
11 #include "base/format_macros.h" | 11 #include "base/format_macros.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "base/strings/string_util.h" | 13 #include "base/strings/string_util.h" |
14 #include "base/strings/stringprintf.h" | 14 #include "base/strings/stringprintf.h" |
15 #include "base/values.h" | 15 #include "base/values.h" |
16 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
17 #include "chrome/browser/services/gcm/gcm_driver.h" | |
18 #include "chrome/browser/services/gcm/gcm_profile_service.h" | 17 #include "chrome/browser/services/gcm/gcm_profile_service.h" |
19 #include "chrome/browser/services/gcm/gcm_profile_service_factory.h" | 18 #include "chrome/browser/services/gcm/gcm_profile_service_factory.h" |
20 #include "chrome/common/url_constants.h" | 19 #include "chrome/common/url_constants.h" |
| 20 #include "components/gcm_driver/gcm_driver.h" |
21 #include "content/public/browser/web_ui.h" | 21 #include "content/public/browser/web_ui.h" |
22 #include "content/public/browser/web_ui_controller.h" | 22 #include "content/public/browser/web_ui_controller.h" |
23 #include "content/public/browser/web_ui_data_source.h" | 23 #include "content/public/browser/web_ui_data_source.h" |
24 #include "content/public/browser/web_ui_message_handler.h" | 24 #include "content/public/browser/web_ui_message_handler.h" |
25 #include "google_apis/gcm/gcm_client.h" | 25 #include "google_apis/gcm/gcm_client.h" |
26 #include "grit/browser_resources.h" | 26 #include "grit/browser_resources.h" |
27 | 27 |
28 namespace { | 28 namespace { |
29 | 29 |
30 void SetCheckinInfo( | 30 void SetCheckinInfo( |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 html_source->AddResourcePath("gcm_internals.js", IDR_GCM_INTERNALS_JS); | 308 html_source->AddResourcePath("gcm_internals.js", IDR_GCM_INTERNALS_JS); |
309 html_source->SetDefaultResource(IDR_GCM_INTERNALS_HTML); | 309 html_source->SetDefaultResource(IDR_GCM_INTERNALS_HTML); |
310 | 310 |
311 Profile* profile = Profile::FromWebUI(web_ui); | 311 Profile* profile = Profile::FromWebUI(web_ui); |
312 content::WebUIDataSource::Add(profile, html_source); | 312 content::WebUIDataSource::Add(profile, html_source); |
313 | 313 |
314 web_ui->AddMessageHandler(new GcmInternalsUIMessageHandler()); | 314 web_ui->AddMessageHandler(new GcmInternalsUIMessageHandler()); |
315 } | 315 } |
316 | 316 |
317 GCMInternalsUI::~GCMInternalsUI() {} | 317 GCMInternalsUI::~GCMInternalsUI() {} |
OLD | NEW |