| 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 "chrome/browser/renderer_host/render_view_host.h" | 5 #include "chrome/browser/renderer_host/render_view_host.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "app/resource_bundle.h" | |
| 12 #include "base/i18n/rtl.h" | 11 #include "base/i18n/rtl.h" |
| 13 #include "base/json/json_reader.h" | 12 #include "base/json/json_reader.h" |
| 14 #include "base/stats_counters.h" | 13 #include "base/stats_counters.h" |
| 15 #include "base/string_util.h" | 14 #include "base/string_util.h" |
| 16 #include "base/time.h" | 15 #include "base/time.h" |
| 17 #include "base/waitable_event.h" | 16 #include "base/waitable_event.h" |
| 18 #include "chrome/browser/browser_list.h" | 17 #include "chrome/browser/browser_list.h" |
| 19 #include "chrome/browser/child_process_security_policy.h" | 18 #include "chrome/browser/child_process_security_policy.h" |
| 20 #include "chrome/browser/cross_site_request_manager.h" | 19 #include "chrome/browser/cross_site_request_manager.h" |
| 21 #include "chrome/browser/debugger/devtools_manager.h" | 20 #include "chrome/browser/debugger/devtools_manager.h" |
| (...skipping 1946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1968 RenderViewHostDelegate::ContentSettings* content_settings_delegate = | 1967 RenderViewHostDelegate::ContentSettings* content_settings_delegate = |
| 1969 delegate_->GetContentSettingsDelegate(); | 1968 delegate_->GetContentSettingsDelegate(); |
| 1970 if (content_settings_delegate) | 1969 if (content_settings_delegate) |
| 1971 content_settings_delegate->OnWebDatabaseAccessed( | 1970 content_settings_delegate->OnWebDatabaseAccessed( |
| 1972 url, name, display_name, estimated_size, blocked_by_policy); | 1971 url, name, display_name, estimated_size, blocked_by_policy); |
| 1973 } | 1972 } |
| 1974 | 1973 |
| 1975 void RenderViewHost::OnSetDisplayingPDFContent() { | 1974 void RenderViewHost::OnSetDisplayingPDFContent() { |
| 1976 delegate_->SetDisplayingPDFContent(); | 1975 delegate_->SetDisplayingPDFContent(); |
| 1977 } | 1976 } |
| 1978 | |
| OLD | NEW |