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

Side by Side Diff: components/offline_pages/core/stub_offline_page_model.cc

Issue 2489443002: Move all components/offline_pages/ files into component/offline_pages/core (Closed)
Patch Set: 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 #include "components/offline_pages/stub_offline_page_model.h" 5 #include "components/offline_pages/core/stub_offline_page_model.h"
6 6
7 namespace offline_pages { 7 namespace offline_pages {
8 8
9 StubOfflinePageModel::StubOfflinePageModel() {} 9 StubOfflinePageModel::StubOfflinePageModel() {}
10 StubOfflinePageModel::~StubOfflinePageModel() {} 10 StubOfflinePageModel::~StubOfflinePageModel() {}
11 11
12 void StubOfflinePageModel::AddObserver(Observer* observer) {} 12 void StubOfflinePageModel::AddObserver(Observer* observer) {}
13 void StubOfflinePageModel::RemoveObserver(Observer* observer) {} 13 void StubOfflinePageModel::RemoveObserver(Observer* observer) {}
14 void StubOfflinePageModel::SavePage( 14 void StubOfflinePageModel::SavePage(
15 const SavePageParams& save_page_params, 15 const SavePageParams& save_page_params,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 ClientPolicyController* StubOfflinePageModel::GetPolicyController() { 49 ClientPolicyController* StubOfflinePageModel::GetPolicyController() {
50 return &policy_controller_; 50 return &policy_controller_;
51 } 51 }
52 bool StubOfflinePageModel::is_loaded() const { 52 bool StubOfflinePageModel::is_loaded() const {
53 return true; 53 return true;
54 } 54 }
55 OfflineEventLogger* StubOfflinePageModel::GetLogger() { 55 OfflineEventLogger* StubOfflinePageModel::GetLogger() {
56 return nullptr; 56 return nullptr;
57 } 57 }
58 } // namespace offline_pages 58 } // namespace offline_pages
OLDNEW
« no previous file with comments | « components/offline_pages/core/stub_offline_page_model.h ('k') | components/offline_pages/downloads/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698