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

Unified Diff: content/browser/javascript_dialogs.h

Issue 7800015: prune down content_dll change to just the CONTENT_EXPORTS (Closed)
Patch Set: update copyright headers, merge Created 9 years, 3 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/browser/javascript_dialogs.h
diff --git a/content/browser/javascript_dialogs.h b/content/browser/javascript_dialogs.h
index cc17a714a747b29bd86f69b316c83ade67ff6f1a..997c5997ad6dc4a4b397315c9bf07d2a7884051a 100644
--- a/content/browser/javascript_dialogs.h
+++ b/content/browser/javascript_dialogs.h
@@ -7,6 +7,7 @@
#pragma once
#include "base/string16.h"
+#include "content/common/content_export.h"
#include "ui/gfx/native_widget_types.h"
class GURL;
@@ -18,7 +19,7 @@ class Message;
namespace content {
-class DialogDelegate {
+class CONTENT_EXPORT DialogDelegate {
public:
// Returns the root native window with which to associate the dialog.
virtual gfx::NativeWindow GetDialogRootWindow() = 0;
@@ -32,7 +33,7 @@ class DialogDelegate {
// A class that invokes a JavaScript dialog must implement this interface to
// allow the dialog implementation to get needed information and return results.
-class JavaScriptDialogDelegate : public DialogDelegate {
+class CONTENT_EXPORT JavaScriptDialogDelegate : public DialogDelegate {
public:
// This callback is invoked when the dialog is closed.
virtual void OnDialogClosed(IPC::Message* reply_msg,

Powered by Google App Engine
This is Rietveld 408576698