Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: chrome/browser/ui/webui/chrome_url_data_manager_backend.cc

Issue 8986005: Reland r114898: Add TabModalConfirmDialogDelegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix and cleanup Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 insert(chrome::kChromeUIRegisterPageHost); 71 insert(chrome::kChromeUIRegisterPageHost);
72 insert(chrome::kChromeUISimUnlockHost); 72 insert(chrome::kChromeUISimUnlockHost);
73 insert(chrome::kChromeUISystemInfoHost); 73 insert(chrome::kChromeUISystemInfoHost);
74 #endif 74 #endif
75 #if defined(TOUCH_UI) 75 #if defined(TOUCH_UI)
76 insert(chrome::kChromeUIKeyboardHost); 76 insert(chrome::kChromeUIKeyboardHost);
77 #endif 77 #endif
78 #if defined(OS_CHROMEOS) || defined(USE_AURA) 78 #if defined(OS_CHROMEOS) || defined(USE_AURA)
79 insert(chrome::kChromeUICollectedCookiesHost); 79 insert(chrome::kChromeUICollectedCookiesHost);
80 insert(chrome::kChromeUIHttpAuthHost); 80 insert(chrome::kChromeUIHttpAuthHost);
81 insert(chrome::kChromeUIRepostFormWarningHost); 81 insert(chrome::kChromeUITabModalConfirmDialogHost);
82 #endif 82 #endif
83 #if defined(USE_AURA) 83 #if defined(USE_AURA)
84 insert(chrome::kChromeUIAppListHost); 84 insert(chrome::kChromeUIAppListHost);
85 #endif 85 #endif
86 } 86 }
87 }; 87 };
88 88
89 base::LazyInstance<ChromeURLContentSecurityPolicyExceptionSet> 89 base::LazyInstance<ChromeURLContentSecurityPolicyExceptionSet>
90 g_chrome_url_content_security_policy_exceptions = LAZY_INSTANCE_INITIALIZER; 90 g_chrome_url_content_security_policy_exceptions = LAZY_INSTANCE_INITIALIZER;
91 91
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 549
550 return new URLRequestChromeJob(request, backend_); 550 return new URLRequestChromeJob(request, backend_);
551 } 551 }
552 552
553 } // namespace 553 } // namespace
554 554
555 net::URLRequestJobFactory::ProtocolHandler* 555 net::URLRequestJobFactory::ProtocolHandler*
556 CreateDevToolsProtocolHandler(ChromeURLDataManagerBackend* backend) { 556 CreateDevToolsProtocolHandler(ChromeURLDataManagerBackend* backend) {
557 return new DevToolsJobFactory(backend); 557 return new DevToolsJobFactory(backend);
558 } 558 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698