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

Side by Side Diff: webkit/glue/webframeloaderclient_impl.h

Issue 45047: Fix missing include file in webframeloaderclient_impl.h to make it self-contained. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 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 | « no previous file | no next file » | 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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ 5 #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__
6 #define WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ 6 #define WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 11
12 MSVC_PUSH_WARNING_LEVEL(0); 12 MSVC_PUSH_WARNING_LEVEL(0);
13 #include "FrameLoaderClient.h" 13 #include "FrameLoaderClient.h"
14 MSVC_POP_WARNING(); 14 MSVC_POP_WARNING();
15 15
16 #include "build/build_config.h" 16 #include "build/build_config.h"
17 #include "base/scoped_ptr.h"
17 #include "googleurl/src/gurl.h" 18 #include "googleurl/src/gurl.h"
18 #include "webkit/glue/webview_delegate.h" 19 #include "webkit/glue/webview_delegate.h"
19 #include "webkit/glue/window_open_disposition.h" 20 #include "webkit/glue/window_open_disposition.h"
20 21
21 namespace WebCore { 22 namespace WebCore {
22 class Frame; 23 class Frame;
23 class HTMLFormElement; 24 class HTMLFormElement;
24 class Widget; 25 class Widget;
25 } 26 }
26 27
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 WebPluginContainer* plugin_widget_; 249 WebPluginContainer* plugin_widget_;
249 // Indicates if we need to send over the initial notification to the plugin 250 // Indicates if we need to send over the initial notification to the plugin
250 // which specifies that the plugin should be ready to accept data. 251 // which specifies that the plugin should be ready to accept data.
251 bool sent_initial_response_to_plugin_; 252 bool sent_initial_response_to_plugin_;
252 253
253 // The disposition to use for the next call to dispatchCreatePage. 254 // The disposition to use for the next call to dispatchCreatePage.
254 WindowOpenDisposition next_window_open_disposition_; 255 WindowOpenDisposition next_window_open_disposition_;
255 }; 256 };
256 257
257 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ 258 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698