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

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

Issue 2418: Unignore most warnings on POSIX in build/SConscript.main. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years, 3 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 | « webkit/glue/weburlrequest_impl.h ('k') | webkit/port/bindings/scripts/CodeGeneratorV8.pm » ('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) 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_WEBVIEW_IMPL_H__ 5 #ifndef WEBKIT_GLUE_WEBVIEW_IMPL_H__
6 #define WEBKIT_GLUE_WEBVIEW_IMPL_H__ 6 #define WEBKIT_GLUE_WEBVIEW_IMPL_H__
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
11 #include "base/gfx/platform_canvas.h" 12 #include "base/gfx/platform_canvas.h"
12 #include "base/gfx/point.h" 13 #include "base/gfx/point.h"
13 #include "base/gfx/size.h" 14 #include "base/gfx/size.h"
14 #include "webkit/glue/webdropdata.h" 15 #include "webkit/glue/webdropdata.h"
15 #include "webkit/glue/webframe_impl.h" 16 #include "webkit/glue/webframe_impl.h"
16 #include "webkit/glue/webpreferences.h" 17 #include "webkit/glue/webpreferences.h"
17 #include "webkit/glue/webview.h" 18 #include "webkit/glue/webview.h"
18 19
19 #pragma warning(push, 0) 20 MSVC_PUSH_WARNING_LEVEL(0);
20 #include "webkit/port/history/BackForwardList.h" 21 #include "webkit/port/history/BackForwardList.h"
21 #include "webkit/port/platform/WidgetClientWin.h" 22 #include "webkit/port/platform/WidgetClientWin.h"
22 #pragma warning(pop) 23 MSVC_POP_WARNING();
23 24
24 namespace WebCore { 25 namespace WebCore {
25 class Frame; 26 class Frame;
26 class HistoryItem; 27 class HistoryItem;
27 class KeyboardEvent; 28 class KeyboardEvent;
28 class Page; 29 class Page;
29 class PlatformKeyboardEvent; 30 class PlatformKeyboardEvent;
30 class Range; 31 class Range;
31 class Widget; 32 class Widget;
32 } 33 }
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 return g_current_input_event; 301 return g_current_input_event;
301 } 302 }
302 private: 303 private:
303 static const WebInputEvent* g_current_input_event; 304 static const WebInputEvent* g_current_input_event;
304 305
305 DISALLOW_EVIL_CONSTRUCTORS(WebViewImpl); 306 DISALLOW_EVIL_CONSTRUCTORS(WebViewImpl);
306 }; 307 };
307 308
308 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H__ 309 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H__
309 310
OLDNEW
« no previous file with comments | « webkit/glue/weburlrequest_impl.h ('k') | webkit/port/bindings/scripts/CodeGeneratorV8.pm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698