| OLD | NEW |
| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 #endif | 55 #endif |
| 56 ui::ContextFactory* GetContextFactory() override; | 56 ui::ContextFactory* GetContextFactory() override; |
| 57 ui::ContextFactoryPrivate* GetContextFactoryPrivate() override; | 57 ui::ContextFactoryPrivate* GetContextFactoryPrivate() override; |
| 58 std::string GetApplicationName() override; | 58 std::string GetApplicationName() override; |
| 59 #if defined(OS_WIN) | 59 #if defined(OS_WIN) |
| 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() const override; |
| 66 int GetDialogRelatedButtonHorizontalSpacing() override; | 66 int GetDialogRelatedButtonHorizontalSpacing() const override; |
| 67 int GetDialogRelatedControlVerticalSpacing() override; | 67 int GetDialogRelatedControlVerticalSpacing() const override; |
| 68 gfx::Insets GetDialogFrameViewInsets() override; | 68 gfx::Insets GetDialogFrameViewInsets() const override; |
| 69 gfx::Insets GetBubbleDialogMargins() override; | 69 gfx::Insets GetBubbleDialogMargins() const override; |
| 70 | 70 |
| 71 private: | 71 private: |
| 72 #if defined(OS_WIN) | 72 #if defined(OS_WIN) |
| 73 typedef std::map<HMONITOR, int> AppbarAutohideEdgeMap; | 73 typedef std::map<HMONITOR, int> AppbarAutohideEdgeMap; |
| 74 | 74 |
| 75 // Callback on main thread with the edges. |returned_edges| is the value that | 75 // 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. | 76 // was returned from the call to GetAutohideEdges() that initiated the lookup. |
| 77 void OnGotAppbarAutohideEdges(const base::Closure& callback, | 77 void OnGotAppbarAutohideEdges(const base::Closure& callback, |
| 78 HMONITOR monitor, | 78 HMONITOR monitor, |
| 79 int returned_edges, | 79 int returned_edges, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 98 // GetAutohideEdges().start a new query. | 98 // GetAutohideEdges().start a new query. |
| 99 bool in_autohide_edges_callback_; | 99 bool in_autohide_edges_callback_; |
| 100 | 100 |
| 101 base::WeakPtrFactory<ChromeViewsDelegate> weak_factory_; | 101 base::WeakPtrFactory<ChromeViewsDelegate> weak_factory_; |
| 102 #endif | 102 #endif |
| 103 | 103 |
| 104 DISALLOW_COPY_AND_ASSIGN(ChromeViewsDelegate); | 104 DISALLOW_COPY_AND_ASSIGN(ChromeViewsDelegate); |
| 105 }; | 105 }; |
| 106 | 106 |
| 107 #endif // CHROME_BROWSER_UI_VIEWS_CHROME_VIEWS_DELEGATE_H_ | 107 #endif // CHROME_BROWSER_UI_VIEWS_CHROME_VIEWS_DELEGATE_H_ |
| OLD | NEW |