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

Unified Diff: ui/snapshot/snapshot_export.h

Issue 11399002: Implemented GetWindowSnapshot on RenderViewImpl (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Added stub methods for iOS Created 8 years 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 | « ui/snapshot/snapshot_aura.cc ('k') | ui/snapshot/snapshot_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/snapshot/snapshot_export.h
diff --git a/ui/snapshot/snapshot_export.h b/ui/snapshot/snapshot_export.h
new file mode 100644
index 0000000000000000000000000000000000000000..9e27370e7a906992641f47062915e1a9588467df
--- /dev/null
+++ b/ui/snapshot/snapshot_export.h
@@ -0,0 +1,32 @@
+// 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 UI_SNAPSHOT_SNAPSHOT_EXPORT_H
+#define UI_SNAPSHOT_SNAPSHOT_EXPORT_H
+
+// Defines SNAPSHOT_EXPORT so that functionality implemented by the snapshot
+// module can be exported to consumers.
+
+#if defined(COMPONENT_BUILD)
+#if defined(WIN32)
+
+#if defined(SNAPSHOT_IMPLEMENTATION)
+#define SNAPSHOT_EXPORT __declspec(dllexport)
+#else
+#define SNAPSHOT_EXPORT __declspec(dllimport)
+#endif // defined(SNAPSHOT_IMPLEMENTATION)
+
+#else // defined(WIN32)
+#if defined(SNAPSHOT_IMPLEMENTATION)
+#define SNAPSHOT_EXPORT __attribute__((visibility("default")))
+#else
+#define SNAPSHOT_EXPORT
+#endif
+#endif
+
+#else // defined(COMPONENT_BUILD)
+#define SNAPSHOT_EXPORT
+#endif
+
+#endif // UI_SNAPSHOT_SNAPSHOT_EXPORT_H
« no previous file with comments | « ui/snapshot/snapshot_aura.cc ('k') | ui/snapshot/snapshot_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698