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

Unified Diff: precompile/precompile.h

Issue 624713003: Keep only base/extractor.[cc|h]. (Closed) Base URL: https://chromium.googlesource.com/external/omaha.git@master
Patch Set: Created 6 years, 2 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 | « plugins/update/site_lock_unittest.cc ('k') | precompile/precompile.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: precompile/precompile.h
diff --git a/precompile/precompile.h b/precompile/precompile.h
deleted file mode 100644
index 208242c6531eb85a100d90e2a64745a1ba79e6f7..0000000000000000000000000000000000000000
--- a/precompile/precompile.h
+++ /dev/null
@@ -1,71 +0,0 @@
-// Copyright 2004-2009 Google Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ========================================================================
-
-#ifndef OMAHA_PRECOMPILE_PRECOMPILE_H__
-#define OMAHA_PRECOMPILE_PRECOMPILE_H__
-
-// 'function': name was marked as #pragma deprecated
-#pragma warning(disable : 4995)
-
-#pragma warning(push)
-// C4201: nonstandard extension used : nameless struct/union
-#pragma warning(disable : 4201)
-#include <windows.h>
-#include <winioctl.h>
-#include <wtypes.h>
-#include <tchar.h>
-#include <strsafe.h>
-
-#include "omaha/base/atlassert.h" // Redefines ATLASSERT.
-
-// C4061: enumerate is not explicitly handled by a case label
-// C4265: class has virtual functions, but destructor is not virtual
-// C4510: default constructor could not be generated
-// C4548: expression before comma has no effect
-// C4610: struct can never be instantiated - user defined constructor required
-// C4826: conversion from 'type1 ' to 'type_2' is sign-extended
-#pragma warning(disable : 4061 4265 4510 4610 4548 4826)
-#include <atlbase.h>
-#include <atlstr.h>
-#include <atlcoll.h>
-#include <atlcom.h>
-#include <atlhost.h>
-#include <atlrx.h>
-#include <atlsecurity.h>
-#include <atltypes.h>
-#include <atlwin.h>
-#include <algorithm>
-#include <cstdlib>
-#include <list>
-#include <map>
-#include <queue>
-#include <string>
-#include <vector>
-#pragma warning(pop)
-
-#if (_MSC_VER < 1400)
-// TODO(omaha): fix the atlconv for VC8.
-#include "omaha/base/atlconvfix.h"
-#endif
-
-#pragma warning(push)
-// C4310: cast truncates constant value
-#pragma warning(disable : 4310)
-#include "base/basictypes.h"
-#pragma warning(pop)
-
-#include "omaha/third_party/gtest/include/gtest/gtest.h"
-
-#endif // OMAHA_PRECOMPILE_PRECOMPILE_H__
« no previous file with comments | « plugins/update/site_lock_unittest.cc ('k') | precompile/precompile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698