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

Side by Side Diff: chrome/browser/ui/views/chrome_views_delegate.h

Issue 2671443002: Make the extra padding around VectorIconButtons configurable. (Closed)
Patch Set: Make sure Harmony close buttons stay in place Created 3 years, 10 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_CHROME_VIEWS_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_CHROME_VIEWS_DELEGATE_H_
6 #define CHROME_BROWSER_UI_VIEWS_CHROME_VIEWS_DELEGATE_H_ 6 #define CHROME_BROWSER_UI_VIEWS_CHROME_VIEWS_DELEGATE_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/location.h" 10 #include "base/location.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 int GetAppbarAutohideEdges(HMONITOR monitor, 60 int GetAppbarAutohideEdges(HMONITOR monitor,
61 const base::Closure& callback) override; 61 const base::Closure& callback) override;
62 #endif 62 #endif
63 scoped_refptr<base::TaskRunner> GetBlockingPoolTaskRunner() override; 63 scoped_refptr<base::TaskRunner> GetBlockingPoolTaskRunner() override;
64 64
65 gfx::Insets GetDialogButtonInsets() override; 65 gfx::Insets GetDialogButtonInsets() override;
66 int GetDialogRelatedButtonHorizontalSpacing() override; 66 int GetDialogRelatedButtonHorizontalSpacing() override;
67 int GetDialogRelatedControlVerticalSpacing() override; 67 int GetDialogRelatedControlVerticalSpacing() override;
68 gfx::Insets GetDialogFrameViewInsets() override; 68 gfx::Insets GetDialogFrameViewInsets() override;
69 gfx::Insets GetBubbleDialogMargins() override; 69 gfx::Insets GetBubbleDialogMargins() override;
70 gfx::Insets GetButtonPadding() const override;
70 71
71 private: 72 private:
72 #if defined(OS_WIN) 73 #if defined(OS_WIN)
73 typedef std::map<HMONITOR, int> AppbarAutohideEdgeMap; 74 typedef std::map<HMONITOR, int> AppbarAutohideEdgeMap;
74 75
75 // Callback on main thread with the edges. |returned_edges| is the value that 76 // Callback on main thread with the edges. |returned_edges| is the value that
76 // was returned from the call to GetAutohideEdges() that initiated the lookup. 77 // was returned from the call to GetAutohideEdges() that initiated the lookup.
77 void OnGotAppbarAutohideEdges(const base::Closure& callback, 78 void OnGotAppbarAutohideEdges(const base::Closure& callback,
78 HMONITOR monitor, 79 HMONITOR monitor,
79 int returned_edges, 80 int returned_edges,
(...skipping 18 matching lines...) Expand all
98 // GetAutohideEdges().start a new query. 99 // GetAutohideEdges().start a new query.
99 bool in_autohide_edges_callback_; 100 bool in_autohide_edges_callback_;
100 101
101 base::WeakPtrFactory<ChromeViewsDelegate> weak_factory_; 102 base::WeakPtrFactory<ChromeViewsDelegate> weak_factory_;
102 #endif 103 #endif
103 104
104 DISALLOW_COPY_AND_ASSIGN(ChromeViewsDelegate); 105 DISALLOW_COPY_AND_ASSIGN(ChromeViewsDelegate);
105 }; 106 };
106 107
107 #endif // CHROME_BROWSER_UI_VIEWS_CHROME_VIEWS_DELEGATE_H_ 108 #endif // CHROME_BROWSER_UI_VIEWS_CHROME_VIEWS_DELEGATE_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/views/chrome_views_delegate.cc » ('j') | ui/views/controls/button/vector_icon_button.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698