| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/renderer/renderer_webkitclient_impl.h" | 5 #include "content/renderer/renderer_webkitclient_impl.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 "base/file_util.h" |
| 9 #include "base/platform_file.h" | 10 #include "base/platform_file.h" |
| 10 #include "base/shared_memory.h" | 11 #include "base/shared_memory.h" |
| 11 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
| 12 #include "chrome/common/chrome_switches.h" | 13 #include "chrome/common/chrome_switches.h" |
| 13 #include "chrome/common/render_messages.h" | 14 #include "chrome/common/render_messages.h" |
| 14 #include "chrome/renderer/net/renderer_net_predictor.h" | 15 #include "chrome/renderer/net/renderer_net_predictor.h" |
| 15 #include "chrome/renderer/render_thread.h" | 16 #include "chrome/renderer/render_thread.h" |
| 16 #include "chrome/renderer/visitedlink_slave.h" | 17 #include "chrome/renderer/visitedlink_slave.h" |
| 17 #include "content/common/database_util.h" | 18 #include "content/common/database_util.h" |
| 18 #include "content/common/file_system/webfilesystem_impl.h" | 19 #include "content/common/file_system/webfilesystem_impl.h" |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 return WebString::fromUTF8(signed_public_key); | 569 return WebString::fromUTF8(signed_public_key); |
| 569 } | 570 } |
| 570 | 571 |
| 571 //------------------------------------------------------------------------------ | 572 //------------------------------------------------------------------------------ |
| 572 | 573 |
| 573 WebBlobRegistry* RendererWebKitClientImpl::blobRegistry() { | 574 WebBlobRegistry* RendererWebKitClientImpl::blobRegistry() { |
| 574 if (!blob_registry_.get()) | 575 if (!blob_registry_.get()) |
| 575 blob_registry_.reset(new WebBlobRegistryImpl(RenderThread::current())); | 576 blob_registry_.reset(new WebBlobRegistryImpl(RenderThread::current())); |
| 576 return blob_registry_.get(); | 577 return blob_registry_.get(); |
| 577 } | 578 } |
| OLD | NEW |