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

Unified Diff: native_client_sdk/src/libraries/nacl_mounts/real_pepper_interface.h

Issue 12194030: Rename mount (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix whitespace Created 7 years, 10 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
Index: native_client_sdk/src/libraries/nacl_mounts/real_pepper_interface.h
diff --git a/native_client_sdk/src/libraries/nacl_mounts/real_pepper_interface.h b/native_client_sdk/src/libraries/nacl_mounts/real_pepper_interface.h
deleted file mode 100644
index e51dff379045731f5d62ef22b3d297dd478b79f3..0000000000000000000000000000000000000000
--- a/native_client_sdk/src/libraries/nacl_mounts/real_pepper_interface.h
+++ /dev/null
@@ -1,54 +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 LIBRARIES_NACL_MOUNTS_REAL_PEPPER_INTERFACE_H_
-#define LIBRARIES_NACL_MOUNTS_REAL_PEPPER_INTERFACE_H_
-
-#include <ppapi/c/ppb.h>
-#include <ppapi/c/ppb_core.h>
-#include <ppapi/c/ppb_message_loop.h>
-#include "pepper_interface.h"
-
-// Forward declare interface classes.
-#include "nacl_mounts/pepper/define_empty_macros.h"
-#undef BEGIN_INTERFACE
-#define BEGIN_INTERFACE(BaseClass, PPInterface, InterfaceString) \
- class Real##BaseClass;
-#include "nacl_mounts/pepper/all_interfaces.h"
-#include "nacl_mounts/pepper/undef_macros.h"
-
-class RealPepperInterface : public PepperInterface {
- public:
- RealPepperInterface(PP_Instance instance,
- PPB_GetInterface get_browser_interface);
-
- virtual PP_Instance GetInstance();
- virtual void AddRefResource(PP_Resource);
- virtual void ReleaseResource(PP_Resource);
-
-// Interface getters.
-#include "nacl_mounts/pepper/define_empty_macros.h"
-#undef BEGIN_INTERFACE
-#define BEGIN_INTERFACE(BaseClass, PPInterface, InterfaceString) \
- virtual BaseClass* Get##BaseClass();
-#include "nacl_mounts/pepper/all_interfaces.h"
-#include "nacl_mounts/pepper/undef_macros.h"
-
- int32_t InitializeMessageLoop();
-
- private:
- PP_Instance instance_;
- const PPB_Core* core_interface_;
- const PPB_MessageLoop* message_loop_interface_;
-
-// Interface pointers.
-#include "nacl_mounts/pepper/define_empty_macros.h"
-#undef BEGIN_INTERFACE
-#define BEGIN_INTERFACE(BaseClass, PPInterface, InterfaceString) \
- Real##BaseClass* BaseClass##interface_;
-#include "nacl_mounts/pepper/all_interfaces.h"
-#include "nacl_mounts/pepper/undef_macros.h"
-};
-
-#endif // LIBRARIES_NACL_MOUNTS_REAL_PEPPER_INTERFACE_H_

Powered by Google App Engine
This is Rietveld 408576698