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

Side by Side Diff: chrome/renderer/render_view.cc

Issue 387020: Upstreaming WebKit.gyp (Closed)
Patch Set: Created 11 years, 1 month 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 | « chrome/renderer/render_view.h ('k') | chrome/renderer/render_view_linux.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #if defined(ENABLE_PEPPER) 5 #if defined(ENABLE_PEPPER)
6 #define PEPPER_APIS_ENABLED 6 #define PEPPER_APIS_ENABLED
7 #endif 7 #endif
8 8
9 #include "chrome/renderer/render_view.h" 9 #include "chrome/renderer/render_view.h"
10 10
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 #include "chrome/renderer/webplugin_delegate_proxy.h" 61 #include "chrome/renderer/webplugin_delegate_proxy.h"
62 #include "chrome/renderer/websharedworker_proxy.h" 62 #include "chrome/renderer/websharedworker_proxy.h"
63 #include "chrome/renderer/webworker_proxy.h" 63 #include "chrome/renderer/webworker_proxy.h"
64 #include "grit/generated_resources.h" 64 #include "grit/generated_resources.h"
65 #include "grit/renderer_resources.h" 65 #include "grit/renderer_resources.h"
66 #include "net/base/data_url.h" 66 #include "net/base/data_url.h"
67 #include "net/base/escape.h" 67 #include "net/base/escape.h"
68 #include "net/base/net_errors.h" 68 #include "net/base/net_errors.h"
69 #include "skia/ext/bitmap_platform_device.h" 69 #include "skia/ext/bitmap_platform_device.h"
70 #include "skia/ext/image_operations.h" 70 #include "skia/ext/image_operations.h"
71 #include "webkit/api/public/WebAccessibilityCache.h" 71 #include "third_party/WebKit/WebKit/chromium/public/WebAccessibilityCache.h"
72 #include "webkit/api/public/WebAccessibilityObject.h" 72 #include "third_party/WebKit/WebKit/chromium/public/WebAccessibilityObject.h"
73 #include "webkit/api/public/WebDataSource.h" 73 #include "third_party/WebKit/WebKit/chromium/public/WebDataSource.h"
74 #include "webkit/api/public/WebDevToolsAgent.h" 74 #include "third_party/WebKit/WebKit/chromium/public/WebDevToolsAgent.h"
75 #include "webkit/api/public/WebDragData.h" 75 #include "third_party/WebKit/WebKit/chromium/public/WebDragData.h"
76 #include "webkit/api/public/WebFormElement.h" 76 #include "third_party/WebKit/WebKit/chromium/public/WebFormElement.h"
77 #include "webkit/api/public/WebFrame.h" 77 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h"
78 #include "webkit/api/public/WebHistoryItem.h" 78 #include "third_party/WebKit/WebKit/chromium/public/WebHistoryItem.h"
79 #include "webkit/api/public/WebNode.h" 79 #include "third_party/WebKit/WebKit/chromium/public/WebNode.h"
80 #include "webkit/api/public/WebPoint.h" 80 #include "third_party/WebKit/WebKit/chromium/public/WebPoint.h"
81 #include "webkit/api/public/WebRange.h" 81 #include "third_party/WebKit/WebKit/chromium/public/WebRange.h"
82 #include "webkit/api/public/WebRect.h" 82 #include "third_party/WebKit/WebKit/chromium/public/WebRect.h"
83 #include "webkit/api/public/WebScriptSource.h" 83 #include "third_party/WebKit/WebKit/chromium/public/WebScriptSource.h"
84 #include "webkit/api/public/WebSearchableFormData.h" 84 #include "third_party/WebKit/WebKit/chromium/public/WebSearchableFormData.h"
85 #include "webkit/api/public/WebSecurityOrigin.h" 85 #include "third_party/WebKit/WebKit/chromium/public/WebSecurityOrigin.h"
86 #include "webkit/api/public/WebSize.h" 86 #include "third_party/WebKit/WebKit/chromium/public/WebSize.h"
87 #include "webkit/api/public/WebString.h" 87 #include "third_party/WebKit/WebKit/chromium/public/WebString.h"
88 #include "webkit/api/public/WebURL.h" 88 #include "third_party/WebKit/WebKit/chromium/public/WebURL.h"
89 #include "webkit/api/public/WebURLError.h" 89 #include "third_party/WebKit/WebKit/chromium/public/WebURLError.h"
90 #include "webkit/api/public/WebURLRequest.h" 90 #include "third_party/WebKit/WebKit/chromium/public/WebURLRequest.h"
91 #include "webkit/api/public/WebURLResponse.h" 91 #include "third_party/WebKit/WebKit/chromium/public/WebURLResponse.h"
92 #include "webkit/api/public/WebVector.h" 92 #include "third_party/WebKit/WebKit/chromium/public/WebVector.h"
93 #include "webkit/appcache/appcache_interfaces.h" 93 #include "webkit/appcache/appcache_interfaces.h"
94 #include "webkit/default_plugin/default_plugin_shared.h" 94 #include "webkit/default_plugin/default_plugin_shared.h"
95 #include "webkit/glue/glue_serialize.h" 95 #include "webkit/glue/glue_serialize.h"
96 #include "webkit/glue/glue_util.h" 96 #include "webkit/glue/glue_util.h"
97 #include "webkit/glue/dom_operations.h" 97 #include "webkit/glue/dom_operations.h"
98 #include "webkit/glue/dom_serializer.h" 98 #include "webkit/glue/dom_serializer.h"
99 #include "webkit/glue/image_decoder.h" 99 #include "webkit/glue/image_decoder.h"
100 #include "webkit/glue/media/buffered_data_source.h" 100 #include "webkit/glue/media/buffered_data_source.h"
101 #include "webkit/glue/media/simple_data_source.h" 101 #include "webkit/glue/media/simple_data_source.h"
102 #include "webkit/glue/password_form.h" 102 #include "webkit/glue/password_form.h"
(...skipping 3724 matching lines...) Expand 10 before | Expand all | Expand 10 after
3827 new PluginMsg_SignalModalDialogEvent(host_window_)); 3827 new PluginMsg_SignalModalDialogEvent(host_window_));
3828 3828
3829 message->EnableMessagePumping(); // Runs a nested message loop. 3829 message->EnableMessagePumping(); // Runs a nested message loop.
3830 bool rv = Send(message); 3830 bool rv = Send(message);
3831 3831
3832 PluginChannelHost::Broadcast( 3832 PluginChannelHost::Broadcast(
3833 new PluginMsg_ResetModalDialogEvent(host_window_)); 3833 new PluginMsg_ResetModalDialogEvent(host_window_));
3834 3834
3835 return rv; 3835 return rv;
3836 } 3836 }
OLDNEW
« no previous file with comments | « chrome/renderer/render_view.h ('k') | chrome/renderer/render_view_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698