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

Side by Side Diff: components/sessions/content/content_serialized_navigation_driver.h

Issue 1361613002: Move all core files in //components/sessions into core/ subdir (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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
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_SESSIONS_CONTENT_CONTENT_SERIALIZED_NAVIGATION_DRIVER_H_ 5 #ifndef COMPONENTS_SESSIONS_CONTENT_CONTENT_SERIALIZED_NAVIGATION_DRIVER_H_
6 #define COMPONENTS_SESSIONS_CONTENT_CONTENT_SERIALIZED_NAVIGATION_DRIVER_H_ 6 #define COMPONENTS_SESSIONS_CONTENT_CONTENT_SERIALIZED_NAVIGATION_DRIVER_H_
7 7
8 #include "components/sessions/core/serialized_navigation_driver.h" 8 #include "components/sessions/core/serialized_navigation_driver.h"
9 9
10 #include "components/sessions/sessions_export.h" 10 #include "components/sessions/core/sessions_export.h"
11 11
12 namespace base { 12 namespace base {
13 template <typename T> struct DefaultSingletonTraits; 13 template <typename T> struct DefaultSingletonTraits;
14 } 14 }
15 15
16 namespace sessions { 16 namespace sessions {
17 17
18 // Provides an implementation of SerializedNavigationDriver that is backed by 18 // Provides an implementation of SerializedNavigationDriver that is backed by
19 // content classes. 19 // content classes.
20 class SESSIONS_EXPORT_PRIVATE ContentSerializedNavigationDriver 20 class SESSIONS_EXPORT_PRIVATE ContentSerializedNavigationDriver
(...skipping 18 matching lines...) Expand all
39 const std::string& page_state) const override; 39 const std::string& page_state) const override;
40 40
41 private: 41 private:
42 ContentSerializedNavigationDriver(); 42 ContentSerializedNavigationDriver();
43 friend struct base::DefaultSingletonTraits<ContentSerializedNavigationDriver>; 43 friend struct base::DefaultSingletonTraits<ContentSerializedNavigationDriver>;
44 }; 44 };
45 45
46 } // namespace sessions 46 } // namespace sessions
47 47
48 #endif // COMPONENTS_SESSIONS_CONTENT_CONTENT_SERIALIZED_NAVIGATION_DRIVER_H_ 48 #endif // COMPONENTS_SESSIONS_CONTENT_CONTENT_SERIALIZED_NAVIGATION_DRIVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698