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

Side by Side Diff: chrome/browser/ui/android/window_android_helper.h

Issue 11137004: Revert "Revert"Adding a WindowAndroidHelper class" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sky's nit Created 8 years, 2 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_ANDROID_WINDOW_ANDROID_HELPER_H_
6 #define CHROME_BROWSER_UI_ANDROID_WINDOW_ANDROID_HELPER_H_
7
8 #include "content/public/browser/web_contents_user_data.h"
9
10 namespace ui {
11 class WindowAndroid;
12 }
13
14 // Per-tab class to provide access to WindowAndroid object.
15 class WindowAndroidHelper
16 : public content::WebContentsUserData<WindowAndroidHelper> {
17 public:
18 virtual ~WindowAndroidHelper();
19
20 void SetWindowAndroid(ui::WindowAndroid* window_android);
21 ui::WindowAndroid* GetWindowAndroid();
22
23 private:
24 explicit WindowAndroidHelper(content::WebContents* web_contents);
25 friend class content::WebContentsUserData<WindowAndroidHelper>;
26
27 // The owning window that has a hold of main application activity.
28 ui::WindowAndroid* window_android_;
29
30 DISALLOW_COPY_AND_ASSIGN(WindowAndroidHelper);
31 };
32
33 #endif // CHROME_BROWSER_UI_ANDROID_WINDOW_ANDROID_HELPER_H_
OLDNEW
« no previous file with comments | « chrome/browser/android/tab_base_android_impl.cc ('k') | chrome/browser/ui/android/window_android_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698