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

Unified Diff: media/player/stdafx.h

Issue 100074: stdafx for precompiled stdafx generation in media player. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | media/player/stdafx.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/player/stdafx.h
===================================================================
--- media/player/stdafx.h (revision 0)
+++ media/player/stdafx.h (revision 0)
@@ -0,0 +1,29 @@
+// Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this
+// source code is governed by a BSD-style license that can be found in the
+// LICENSE file.
+
+// stdafx.h : Include file for standard system include files,
+// or project specific include files that are used frequently, but
+// are changed infrequently.
+// This file is in Microsoft coding style.
+
+#ifndef MEDIA_PLAYER_STDAFX_H_
+#define MEDIA_PLAYER_STDAFX_H_
+
+// Change these values to use different versions.
+#define _RICHEDIT_VER 0x0100
+
+#pragma warning(disable: 4996)
+// warning C4996: '_vswprintf': This function or variable may be unsafe.
+// Consider using vswprintf_s instead. To disable deprecation,
+// use _CRT_SECURE_NO_WARNINGS. See online help for details.
+
+#include <atlbase.h>
+#include <atlapp.h>
+
+extern CAppModule _Module;
+
+#include <atlwin.h>
+
+#endif // MEDIA_PLAYER_STDAFX_H_
+
« no previous file with comments | « no previous file | media/player/stdafx.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698