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

Unified Diff: base/win/iunknown_impl.h

Issue 1446363003: Deleted OS_WIN and all Windows specific files from base. (Closed) Base URL: https://github.com/domokit/mojo.git@base_tests
Patch Set: Created 5 years, 1 month 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 | « base/win/iat_patch_function.cc ('k') | base/win/iunknown_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/win/iunknown_impl.h
diff --git a/base/win/iunknown_impl.h b/base/win/iunknown_impl.h
deleted file mode 100644
index b7de205ac6cdcd52d02d6118e81c2de02739d48d..0000000000000000000000000000000000000000
--- a/base/win/iunknown_impl.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef BASE_WIN_IUNKNOWN_IMPL_H_
-#define BASE_WIN_IUNKNOWN_IMPL_H_
-
-#include <unknwn.h>
-
-#include "base/atomic_ref_count.h"
-#include "base/base_export.h"
-#include "base/compiler_specific.h"
-
-namespace base {
-namespace win {
-
-// IUnknown implementation for other classes to derive from.
-class BASE_EXPORT IUnknownImpl : public IUnknown {
- public:
- IUnknownImpl();
-
- ULONG STDMETHODCALLTYPE AddRef() override;
- ULONG STDMETHODCALLTYPE Release() override;
-
- // Subclasses should extend this to return any interfaces they provide.
- STDMETHODIMP QueryInterface(REFIID riid, void** ppv) override;
-
- protected:
- virtual ~IUnknownImpl();
-
- private:
- AtomicRefCount ref_count_;
-};
-
-} // namespace win
-} // namespace base
-
-#endif // BASE_WIN_IUNKNOWN_IMPL_H_
« no previous file with comments | « base/win/iat_patch_function.cc ('k') | base/win/iunknown_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698