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

Side by Side Diff: components/dom_distiller/content/browser/dom_distiller_viewer_source.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, 11 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_CONTENT_BROWSER_DOM_DISTILLER_VIEWER_SOURCE_H_ 5 #ifndef COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DOM_DISTILLER_VIEWER_SOURCE_H_
6 #define COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DOM_DISTILLER_VIEWER_SOURCE_H_ 6 #define COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DOM_DISTILLER_VIEWER_SOURCE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "components/dom_distiller/content/browser/distiller_ui_handle.h" 13 #include "components/dom_distiller/content/browser/distiller_ui_handle.h"
14 #include "content/public/browser/url_data_source.h" 14 #include "content/public/browser/url_data_source.h"
15 15
16 namespace dom_distiller { 16 namespace dom_distiller {
17 17
18 class DomDistillerServiceInterface; 18 class DomDistillerServiceInterface;
19 class DomDistillerViewerSourceTest; 19 class DomDistillerViewerSourceTest;
20 class ViewerHandle; 20 class ViewerHandle;
21 class ViewRequestDelegate; 21 class ViewRequestDelegate;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 // An object for accessing chrome-specific UI controls including external 58 // An object for accessing chrome-specific UI controls including external
59 // feedback and opening the distiller settings. 59 // feedback and opening the distiller settings.
60 scoped_ptr<DistillerUIHandle> distiller_ui_handle_; 60 scoped_ptr<DistillerUIHandle> distiller_ui_handle_;
61 61
62 DISALLOW_COPY_AND_ASSIGN(DomDistillerViewerSource); 62 DISALLOW_COPY_AND_ASSIGN(DomDistillerViewerSource);
63 }; 63 };
64 64
65 } // namespace dom_distiller 65 } // namespace dom_distiller
66 66
67 #endif // COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DOM_DISTILLER_VIEWER_SOURCE_ H_ 67 #endif // COMPONENTS_DOM_DISTILLER_CONTENT_BROWSER_DOM_DISTILLER_VIEWER_SOURCE_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698