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

Side by Side Diff: components/dom_distiller/core/dom_distiller_observer.h

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_OBSERVER_H_ 5 #ifndef COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_OBSERVER_H_
6 #define COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_OBSERVER_H_ 6 #define COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_OBSERVER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/macros.h"
11 #include "components/dom_distiller/core/article_entry.h" 12 #include "components/dom_distiller/core/article_entry.h"
12 13
13 namespace dom_distiller { 14 namespace dom_distiller {
14 15
15 // Provides notifications for any mutations to entries of the reading list. 16 // Provides notifications for any mutations to entries of the reading list.
16 class DomDistillerObserver { 17 class DomDistillerObserver {
17 public: 18 public:
18 // An update to an article entry. 19 // An update to an article entry.
19 struct ArticleUpdate { 20 struct ArticleUpdate {
20 enum UpdateType { 21 enum UpdateType {
(...skipping 12 matching lines...) Expand all
33 DomDistillerObserver() {} 34 DomDistillerObserver() {}
34 virtual ~DomDistillerObserver() {} 35 virtual ~DomDistillerObserver() {}
35 36
36 private: 37 private:
37 DISALLOW_COPY_AND_ASSIGN(DomDistillerObserver); 38 DISALLOW_COPY_AND_ASSIGN(DomDistillerObserver);
38 }; 39 };
39 40
40 } // namespace dom_distiller 41 } // namespace dom_distiller
41 42
42 #endif // COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_OBSERVER_H_ 43 #endif // COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_OBSERVER_H_
OLDNEW
« no previous file with comments | « components/dom_distiller/core/dom_distiller_model.h ('k') | components/dom_distiller/core/dom_distiller_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698