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

Unified Diff: content/common/native_web_keyboard_event.h

Issue 7800015: prune down content_dll change to just the CONTENT_EXPORTS (Closed)
Patch Set: fix exports for switches, content_main Created 9 years, 4 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: content/common/native_web_keyboard_event.h
diff --git a/content/common/native_web_keyboard_event.h b/content/common/native_web_keyboard_event.h
index 7de71a46545abdf89c14fc957b672cede7d1acf9..631273ee7e69cd6098b4f32bf3de6df0860c0e3f 100644
--- a/content/common/native_web_keyboard_event.h
+++ b/content/common/native_web_keyboard_event.h
@@ -7,7 +7,9 @@
#pragma once
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "build/build_config.h"
+#include "content/common/content_export.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
#if defined(OS_WIN)
@@ -24,7 +26,8 @@ typedef struct _GdkEventKey GdkEventKey;
// Owns a platform specific event; used to pass own and pass event through
// platform independent code.
-struct NativeWebKeyboardEvent : public WebKit::WebKeyboardEvent {
+struct CONTENT_EXPORT NativeWebKeyboardEvent :
+ NON_EXPORTED_BASE(public WebKit::WebKeyboardEvent) {
NativeWebKeyboardEvent();
#if defined(OS_WIN)

Powered by Google App Engine
This is Rietveld 408576698