From f4d54aa86f67affe758e3d3fd74f5bc2084bdfac Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Tue, 10 Jun 2014 18:06:06 +0000 Subject: [PATCH] Remove duplicate content in file. git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1916@1735 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- libcef_dll/cef_macros.h | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/libcef_dll/cef_macros.h b/libcef_dll/cef_macros.h index 1c392a542..8152be890 100644 --- a/libcef_dll/cef_macros.h +++ b/libcef_dll/cef_macros.h @@ -19,24 +19,3 @@ #endif // !BUILDING_CEF_SHARED #endif // CEF_LIBCEF_DLL_CEF_MACROS_H_ -// Copyright (c) 2014 The Chromium Embedded Framework Authors. All rights -// reserved. Use of this source code is governed by a BSD-style license that -// can be found in the LICENSE file. - -#ifndef CEF_LIBCEF_DLL_CEF_MACROS_H_ -#define CEF_LIBCEF_DLL_CEF_MACROS_H_ -#pragma once - -#ifdef BUILDING_CEF_SHARED -#include "base/macros.h" -#else // !BUILDING_CEF_SHARED - -// A macro to disallow the copy constructor and operator= functions -// This should be used in the private: declarations for a class -#define DISALLOW_COPY_AND_ASSIGN(TypeName) \ - TypeName(const TypeName&); \ - void operator=(const TypeName&) - -#endif // !BUILDING_CEF_SHARED - -#endif // CEF_LIBCEF_DLL_CEF_MACROS_H_