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

Unified Diff: content/public/common/presentation_constants.h

Issue 1037483003: [PresentationAPI] Implementing send() from WebPresentationClient to the PresentationService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nits, trybots errors. Created 5 years, 7 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/public/common/presentation_constants.h
diff --git a/content/public/common/presentation_constants.h b/content/public/common/presentation_constants.h
new file mode 100644
index 0000000000000000000000000000000000000000..3e63d6df0124aa1dbc81bbdf1775f6af353d0871
--- /dev/null
+++ b/content/public/common/presentation_constants.h
@@ -0,0 +1,19 @@
+// Copyright (c) 2015 The Chromium Authors. All rights reserved.
nasko 2015/05/11 15:18:55 No "(c)" in new files.
USE s.singapati at gmail.com 2015/05/11 15:28:17 Done.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_PUBLIC_COMMON_PRESENTATION_CONSTANTS_H_
+#define CONTENT_PUBLIC_COMMON_PRESENTATION_CONSTANTS_H_
+
+#include <stddef.h> // For size_t
+
+#include "content/common/content_export.h"
+
+namespace content {
+
+// The maximum number of bytes allowed in a presentation session message.
+CONTENT_EXPORT extern const size_t kMaxPresentationSessionMessageSize;
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_COMMON_PRESENTATION_CONSTANTS_H_

Powered by Google App Engine
This is Rietveld 408576698