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

Side by Side Diff: chrome/browser/chrome_content_browser_client.cc

Issue 9600036: Move Render(View|Widget)Host and associated classes to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Respond to review comments. Created 8 years, 9 months 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) 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/chrome_content_browser_client.h" 5 #include "chrome/browser/chrome_content_browser_client.h"
6 6
7 #include <set> 7 #include <set>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 #endif 133 #endif
134 134
135 #if defined(USE_NSS) 135 #if defined(USE_NSS)
136 #include "chrome/browser/ui/crypto_module_password_dialog.h" 136 #include "chrome/browser/ui/crypto_module_password_dialog.h"
137 #endif 137 #endif
138 138
139 using content::AccessTokenStore; 139 using content::AccessTokenStore;
140 using content::BrowserThread; 140 using content::BrowserThread;
141 using content::ChildProcessSecurityPolicy; 141 using content::ChildProcessSecurityPolicy;
142 using content::QuotaPermissionContext; 142 using content::QuotaPermissionContext;
143 using content::RenderViewHost;
143 using content::SiteInstance; 144 using content::SiteInstance;
144 using content::WebContents; 145 using content::WebContents;
145 146
146 namespace { 147 namespace {
147 148
148 const char* kPredefinedAllowedSocketOrigins[] = { 149 const char* kPredefinedAllowedSocketOrigins[] = {
149 "okddffdblfhhnmhodogpojmfkjmhinfp", // Test SSH Client 150 "okddffdblfhhnmhodogpojmfkjmhinfp", // Test SSH Client
150 "pnhechapfaindjhompbnflcldabbghjo" // HTerm App (SSH Client) 151 "pnhechapfaindjhompbnflcldabbghjo" // HTerm App (SSH Client)
151 }; 152 };
152 153
(...skipping 1437 matching lines...) Expand 10 before | Expand all | Expand 10 after
1590 #if defined(USE_NSS) 1591 #if defined(USE_NSS)
1591 crypto::CryptoModuleBlockingPasswordDelegate* 1592 crypto::CryptoModuleBlockingPasswordDelegate*
1592 ChromeContentBrowserClient::GetCryptoPasswordDelegate( 1593 ChromeContentBrowserClient::GetCryptoPasswordDelegate(
1593 const GURL& url) { 1594 const GURL& url) {
1594 return browser::NewCryptoModuleBlockingDialogDelegate( 1595 return browser::NewCryptoModuleBlockingDialogDelegate(
1595 browser::kCryptoModulePasswordKeygen, url.host()); 1596 browser::kCryptoModulePasswordKeygen, url.host());
1596 } 1597 }
1597 #endif 1598 #endif
1598 1599
1599 } // namespace chrome 1600 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/chrome_content_browser_client.h ('k') | chrome/browser/chromeos/accessibility/accessibility_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698