Chromium Code Reviews| 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/ui/webui/chrome_url_data_manager_backend.h" | 5 #include "chrome/browser/ui/webui/chrome_url_data_manager_backend.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 63 insert(chrome::kChromeUIDialogHost); | 63 insert(chrome::kChromeUIDialogHost); |
| 64 insert(chrome::kChromeUIInputWindowDialogHost); | 64 insert(chrome::kChromeUIInputWindowDialogHost); |
| 65 insert(chrome::kChromeUINewTabHost); | 65 insert(chrome::kChromeUINewTabHost); |
| 66 #if defined(OS_CHROMEOS) | 66 #if defined(OS_CHROMEOS) |
| 67 insert(chrome::kChromeUIOobeHost); | 67 insert(chrome::kChromeUIOobeHost); |
| 68 insert(chrome::kChromeUIMobileSetupHost); | 68 insert(chrome::kChromeUIMobileSetupHost); |
| 69 insert(chrome::kChromeUIProxySettingsHost); | 69 insert(chrome::kChromeUIProxySettingsHost); |
| 70 insert(chrome::kChromeUIRegisterPageHost); | 70 insert(chrome::kChromeUIRegisterPageHost); |
| 71 insert(chrome::kChromeUISimUnlockHost); | 71 insert(chrome::kChromeUISimUnlockHost); |
| 72 insert(chrome::kChromeUISystemInfoHost); | 72 insert(chrome::kChromeUISystemInfoHost); |
| 73 insert(chrome::kChromeUIOSCreditsHost); | |
|
Daniel Erat
2011/12/08 00:46:52
nit: mind alphabetizing the list? (OobeHost is al
| |
| 73 #endif | 74 #endif |
| 74 #if defined(TOUCH_UI) | 75 #if defined(TOUCH_UI) |
| 75 insert(chrome::kChromeUIKeyboardHost); | 76 insert(chrome::kChromeUIKeyboardHost); |
| 76 #endif | 77 #endif |
| 77 #if defined(OS_CHROMEOS) || defined(USE_AURA) | 78 #if defined(OS_CHROMEOS) || defined(USE_AURA) |
| 78 insert(chrome::kChromeUICollectedCookiesHost); | 79 insert(chrome::kChromeUICollectedCookiesHost); |
| 79 insert(chrome::kChromeUIHttpAuthHost); | 80 insert(chrome::kChromeUIHttpAuthHost); |
| 80 insert(chrome::kChromeUIRepostFormWarningHost); | 81 insert(chrome::kChromeUIRepostFormWarningHost); |
| 81 #endif | 82 #endif |
| 82 #if defined(USE_AURA) | 83 #if defined(USE_AURA) |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 548 | 549 |
| 549 return new URLRequestChromeJob(request, backend_); | 550 return new URLRequestChromeJob(request, backend_); |
| 550 } | 551 } |
| 551 | 552 |
| 552 } // namespace | 553 } // namespace |
| 553 | 554 |
| 554 net::URLRequestJobFactory::ProtocolHandler* | 555 net::URLRequestJobFactory::ProtocolHandler* |
| 555 CreateDevToolsProtocolHandler(ChromeURLDataManagerBackend* backend) { | 556 CreateDevToolsProtocolHandler(ChromeURLDataManagerBackend* backend) { |
| 556 return new DevToolsJobFactory(backend); | 557 return new DevToolsJobFactory(backend); |
| 557 } | 558 } |
| OLD | NEW |