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

Unified Diff: Source/platform/SharedBuffer.h

Issue 1290803002: Remove STATIC_CONST_MEMBER_DEFINITION. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 5 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
« no previous file with comments | « Source/config.h ('k') | Source/platform/SharedBuffer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/SharedBuffer.h
diff --git a/Source/platform/SharedBuffer.h b/Source/platform/SharedBuffer.h
index 4b1834e7330e8a93d7d9c12ff92d79242bd01d99..94a6946a345cf9d1a370bb68cea9f438cb8bc9f0 100644
--- a/Source/platform/SharedBuffer.h
+++ b/Source/platform/SharedBuffer.h
@@ -39,7 +39,7 @@ namespace blink {
class PLATFORM_EXPORT SharedBuffer : public RefCounted<SharedBuffer> {
public:
- static const unsigned kSegmentSize = 0x1000;
+ enum : unsigned { kSegmentSize = 0x1000 };
static PassRefPtr<SharedBuffer> create() { return adoptRef(new SharedBuffer); }
static PassRefPtr<SharedBuffer> create(size_t size) { return adoptRef(new SharedBuffer(size)); }
« no previous file with comments | « Source/config.h ('k') | Source/platform/SharedBuffer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698