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

Side by Side Diff: public/platform/WebScrollbar.h

Issue 401973003: Rename WebCore namespace to blink in Public (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « public/platform/WebSchedulerProxy.h ('k') | public/platform/WebScrollbarLayer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 15 matching lines...) Expand all
26 #define WebScrollbar_h 26 #define WebScrollbar_h
27 27
28 #include "WebPoint.h" 28 #include "WebPoint.h"
29 #include "WebRect.h" 29 #include "WebRect.h"
30 #include "WebSize.h" 30 #include "WebSize.h"
31 #include "WebVector.h" 31 #include "WebVector.h"
32 #if INSIDE_BLINK 32 #if INSIDE_BLINK
33 #include "wtf/PassOwnPtr.h" 33 #include "wtf/PassOwnPtr.h"
34 #endif 34 #endif
35 35
36 namespace WebCore { 36 namespace blink {
37 class Scrollbar; 37 class Scrollbar;
38 } 38 }
39 39
40 namespace blink { 40 namespace blink {
41 41
42 // A const accessor interface for a WebKit scrollbar 42 // A const accessor interface for a WebKit scrollbar
43 class BLINK_PLATFORM_EXPORT WebScrollbar { 43 class BLINK_PLATFORM_EXPORT WebScrollbar {
44 public: 44 public:
45 enum Orientation { 45 enum Orientation {
46 Horizontal, 46 Horizontal,
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 virtual bool isCustomScrollbar() const = 0; 107 virtual bool isCustomScrollbar() const = 0;
108 virtual Orientation orientation() const = 0; 108 virtual Orientation orientation() const = 0;
109 virtual bool isLeftSideVerticalScrollbar() const = 0; 109 virtual bool isLeftSideVerticalScrollbar() const = 0;
110 virtual bool isAlphaLocked() const { return false; } 110 virtual bool isAlphaLocked() const { return false; }
111 virtual void setIsAlphaLocked(bool) { } 111 virtual void setIsAlphaLocked(bool) { }
112 }; 112 };
113 113
114 } // namespace blink 114 } // namespace blink
115 115
116 #endif 116 #endif
OLDNEW
« no previous file with comments | « public/platform/WebSchedulerProxy.h ('k') | public/platform/WebScrollbarLayer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698