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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_base.h

Issue 10696166: Remove #pragma once from content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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
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 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
7 #pragma once
8 7
9 #if defined(OS_MACOSX) 8 #if defined(OS_MACOSX)
10 #include <OpenGL/OpenGL.h> 9 #include <OpenGL/OpenGL.h>
11 #endif 10 #endif
12 11
13 #if defined(TOOLKIT_GTK) 12 #if defined(TOOLKIT_GTK)
14 #include <gdk/gdk.h> 13 #include <gdk/gdk.h>
15 #endif 14 #endif
16 15
17 #include <string> 16 #include <string>
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 102
104 gfx::Rect current_display_area_; 103 gfx::Rect current_display_area_;
105 float current_device_scale_factor_; 104 float current_device_scale_factor_;
106 105
107 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); 106 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase);
108 }; 107 };
109 108
110 } // namespace content 109 } // namespace content
111 110
112 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ 111 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698