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

Side by Side Diff: content/shell/shell_content_browser_client.cc

Issue 10384128: Quote WebPreferences in namespace webkit_glue. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright 2012 Created 8 years, 7 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
« no previous file with comments | « content/shell/shell_content_browser_client.h ('k') | content/test/render_view_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "content/shell/shell_content_browser_client.h" 5 #include "content/shell/shell_content_browser_client.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/file_path.h" 8 #include "base/file_path.h"
9 #include "content/public/browser/resource_dispatcher_host.h" 9 #include "content/public/browser/resource_dispatcher_host.h"
10 #include "content/shell/shell.h" 10 #include "content/shell/shell.h"
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 } 292 }
293 293
294 AccessTokenStore* ShellContentBrowserClient::CreateAccessTokenStore() { 294 AccessTokenStore* ShellContentBrowserClient::CreateAccessTokenStore() {
295 return NULL; 295 return NULL;
296 } 296 }
297 297
298 bool ShellContentBrowserClient::IsFastShutdownPossible() { 298 bool ShellContentBrowserClient::IsFastShutdownPossible() {
299 return true; 299 return true;
300 } 300 }
301 301
302 void ShellContentBrowserClient::OverrideWebkitPrefs(RenderViewHost* rvh, 302 void ShellContentBrowserClient::OverrideWebkitPrefs(
303 const GURL& url, 303 RenderViewHost* rvh,
304 WebPreferences* prefs) { 304 const GURL& url,
305 webkit_glue::WebPreferences* prefs) {
305 } 306 }
306 307
307 void ShellContentBrowserClient::UpdateInspectorSetting( 308 void ShellContentBrowserClient::UpdateInspectorSetting(
308 RenderViewHost* rvh, const std::string& key, const std::string& value) { 309 RenderViewHost* rvh, const std::string& key, const std::string& value) {
309 } 310 }
310 311
311 void ShellContentBrowserClient::ClearInspectorSettings(RenderViewHost* rvh) { 312 void ShellContentBrowserClient::ClearInspectorSettings(RenderViewHost* rvh) {
312 } 313 }
313 314
314 void ShellContentBrowserClient::BrowserURLHandlerCreated( 315 void ShellContentBrowserClient::BrowserURLHandlerCreated(
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { 353 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) {
353 return NULL; 354 return NULL;
354 } 355 }
355 #endif 356 #endif
356 357
357 ShellBrowserContext* ShellContentBrowserClient::browser_context() { 358 ShellBrowserContext* ShellContentBrowserClient::browser_context() {
358 return shell_browser_main_parts_->browser_context(); 359 return shell_browser_main_parts_->browser_context();
359 } 360 }
360 361
361 } // namespace content 362 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/shell_content_browser_client.h ('k') | content/test/render_view_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698