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

Side by Side Diff: content/browser/renderer_host/render_view_host_impl.cc

Issue 2582463002: Fix webkitGetEntry for non-native files. (Closed)
Patch Set: . Created 4 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
« no previous file with comments | « no previous file | content/browser/renderer_host/render_widget_host_impl.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/browser/renderer_host/render_view_host_impl.h" 5 #include "content/browser/renderer_host/render_view_host_impl.h"
6 6
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 #include "content/public/browser/notification_types.h" 67 #include "content/public/browser/notification_types.h"
68 #include "content/public/browser/render_frame_host.h" 68 #include "content/public/browser/render_frame_host.h"
69 #include "content/public/browser/render_widget_host_iterator.h" 69 #include "content/public/browser/render_widget_host_iterator.h"
70 #include "content/public/browser/storage_partition.h" 70 #include "content/public/browser/storage_partition.h"
71 #include "content/public/browser/user_metrics.h" 71 #include "content/public/browser/user_metrics.h"
72 #include "content/public/common/bindings_policy.h" 72 #include "content/public/common/bindings_policy.h"
73 #include "content/public/common/content_constants.h" 73 #include "content/public/common/content_constants.h"
74 #include "content/public/common/content_features.h" 74 #include "content/public/common/content_features.h"
75 #include "content/public/common/content_switches.h" 75 #include "content/public/common/content_switches.h"
76 #include "content/public/common/context_menu_params.h" 76 #include "content/public/common/context_menu_params.h"
77 #include "content/public/common/drop_data.h"
78 #include "content/public/common/file_chooser_file_info.h" 77 #include "content/public/common/file_chooser_file_info.h"
79 #include "content/public/common/file_chooser_params.h" 78 #include "content/public/common/file_chooser_params.h"
80 #include "content/public/common/result_codes.h" 79 #include "content/public/common/result_codes.h"
81 #include "content/public/common/url_constants.h" 80 #include "content/public/common/url_constants.h"
82 #include "content/public/common/url_utils.h" 81 #include "content/public/common/url_utils.h"
83 #include "net/base/url_util.h" 82 #include "net/base/url_util.h"
84 #include "net/url_request/url_request_context_getter.h" 83 #include "net/url_request/url_request_context_getter.h"
85 #include "third_party/skia/include/core/SkBitmap.h" 84 #include "third_party/skia/include/core/SkBitmap.h"
86 #include "ui/base/clipboard/clipboard.h" 85 #include "ui/base/clipboard/clipboard.h"
87 #include "ui/base/touch/touch_device.h" 86 #include "ui/base/touch/touch_device.h"
(...skipping 985 matching lines...) Expand 10 before | Expand all | Expand 10 after
1073 } else { 1072 } else {
1074 render_view_ready_on_process_launch_ = true; 1073 render_view_ready_on_process_launch_ = true;
1075 } 1074 }
1076 } 1075 }
1077 1076
1078 void RenderViewHostImpl::RenderViewReady() { 1077 void RenderViewHostImpl::RenderViewReady() {
1079 delegate_->RenderViewReady(this); 1078 delegate_->RenderViewReady(this);
1080 } 1079 }
1081 1080
1082 } // namespace content 1081 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_widget_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698