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

Side by Side Diff: chrome/browser/android/offline_pages/recent_tab_helper.h

Issue 2489443002: Move all components/offline_pages/ files into component/offline_pages/core (Closed)
Patch Set: more rebase Created 4 years 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_ANDROID_OFFLINE_PAGES_RECENT_TAB_HELPER_H_ 5 #ifndef CHROME_BROWSER_ANDROID_OFFLINE_PAGES_RECENT_TAB_HELPER_H_
6 #define CHROME_BROWSER_ANDROID_OFFLINE_PAGES_RECENT_TAB_HELPER_H_ 6 #define CHROME_BROWSER_ANDROID_OFFLINE_PAGES_RECENT_TAB_HELPER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/memory/weak_ptr.h" 11 #include "base/memory/weak_ptr.h"
12 #include "components/offline_pages/downloads/download_ui_item.h" 12 #include "components/offline_pages/core/downloads/download_ui_item.h"
13 #include "components/offline_pages/offline_page_model.h" 13 #include "components/offline_pages/core/offline_page_model.h"
14 #include "components/offline_pages/snapshot_controller.h" 14 #include "components/offline_pages/core/snapshot_controller.h"
15 #include "content/public/browser/web_contents_observer.h" 15 #include "content/public/browser/web_contents_observer.h"
16 #include "content/public/browser/web_contents_user_data.h" 16 #include "content/public/browser/web_contents_user_data.h"
17 #include "url/gurl.h" 17 #include "url/gurl.h"
18 18
19 namespace content { 19 namespace content {
20 class NavigationEntry; 20 class NavigationEntry;
21 class NavigationHandle; 21 class NavigationHandle;
22 } 22 }
23 23
24 namespace offline_pages { 24 namespace offline_pages {
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 132
133 std::unique_ptr<Delegate> delegate_; 133 std::unique_ptr<Delegate> delegate_;
134 134
135 base::WeakPtrFactory<RecentTabHelper> weak_ptr_factory_; 135 base::WeakPtrFactory<RecentTabHelper> weak_ptr_factory_;
136 136
137 DISALLOW_COPY_AND_ASSIGN(RecentTabHelper); 137 DISALLOW_COPY_AND_ASSIGN(RecentTabHelper);
138 }; 138 };
139 139
140 } // namespace offline_pages 140 } // namespace offline_pages
141 #endif // CHROME_BROWSER_ANDROID_OFFLINE_PAGES_RECENT_TAB_HELPER_H_ 141 #endif // CHROME_BROWSER_ANDROID_OFFLINE_PAGES_RECENT_TAB_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698