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

Side by Side Diff: chrome/browser/ui/views/frame/opaque_browser_frame_view_linux.h

Issue 1545153002: Switch to standard integer types in chrome/browser/ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LINUX_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LINUX_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LINUX_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LINUX_H_
7 7
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h"
10 #include "chrome/browser/ui/views/frame/opaque_browser_frame_view_platform_speci fic.h" 10 #include "chrome/browser/ui/views/frame/opaque_browser_frame_view_platform_speci fic.h"
11 #include "ui/views/linux_ui/window_button_order_observer.h" 11 #include "ui/views/linux_ui/window_button_order_observer.h"
12 12
13 class ThemeService; 13 class ThemeService;
14 14
15 // Plumbs button change events from views::LinuxUI to 15 // Plumbs button change events from views::LinuxUI to
16 // OpaqueBrowserFrameViewLayout. 16 // OpaqueBrowserFrameViewLayout.
17 class OpaqueBrowserFrameViewLinux 17 class OpaqueBrowserFrameViewLinux
18 : public OpaqueBrowserFrameViewPlatformSpecific, 18 : public OpaqueBrowserFrameViewPlatformSpecific,
19 public views::WindowButtonOrderObserver { 19 public views::WindowButtonOrderObserver {
(...skipping 15 matching lines...) Expand all
35 private: 35 private:
36 OpaqueBrowserFrameView* view_; 36 OpaqueBrowserFrameView* view_;
37 OpaqueBrowserFrameViewLayout* layout_; 37 OpaqueBrowserFrameViewLayout* layout_;
38 38
39 ThemeService* theme_service_; 39 ThemeService* theme_service_;
40 40
41 DISALLOW_COPY_AND_ASSIGN(OpaqueBrowserFrameViewLinux); 41 DISALLOW_COPY_AND_ASSIGN(OpaqueBrowserFrameViewLinux);
42 }; 42 };
43 43
44 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LINUX_H_ 44 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LINUX_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698