| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 WEBKIT_GLUE_MOCK_WEBFRAME_H_ | 5 #ifndef WEBKIT_MOCKS_MOCK_WEBFRAME_H_ |
| 6 #define WEBKIT_GLUE_MOCK_WEBFRAME_H_ | 6 #define WEBKIT_MOCKS_MOCK_WEBFRAME_H_ |
| 7 | 7 |
| 8 #include "testing/gmock/include/gmock/gmock.h" | 8 #include "testing/gmock/include/gmock/gmock.h" |
| 9 #include "third_party/WebKit/WebKit/chromium/public/WebDocument.h" | 9 #include "third_party/WebKit/WebKit/chromium/public/WebDocument.h" |
| 10 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" | 10 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" |
| 11 #include "third_party/WebKit/WebKit/chromium/public/WebHistoryItem.h" | 11 #include "third_party/WebKit/WebKit/chromium/public/WebHistoryItem.h" |
| 12 #include "third_party/WebKit/WebKit/chromium/public/WebInputElement.h" | 12 #include "third_party/WebKit/WebKit/chromium/public/WebInputElement.h" |
| 13 #include "third_party/WebKit/WebKit/chromium/public/WebPerformance.h" | 13 #include "third_party/WebKit/WebKit/chromium/public/WebPerformance.h" |
| 14 #include "third_party/WebKit/WebKit/chromium/public/WebRange.h" | 14 #include "third_party/WebKit/WebKit/chromium/public/WebRange.h" |
| 15 #include "third_party/WebKit/WebKit/chromium/public/WebRect.h" | 15 #include "third_party/WebKit/WebKit/chromium/public/WebRect.h" |
| 16 #include "third_party/WebKit/WebKit/chromium/public/WebSecurityOrigin.h" | 16 #include "third_party/WebKit/WebKit/chromium/public/WebSecurityOrigin.h" |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 virtual WebString layerTreeAsText() const { | 342 virtual WebString layerTreeAsText() const { |
| 343 return WebString(); | 343 return WebString(); |
| 344 } | 344 } |
| 345 | 345 |
| 346 private: | 346 private: |
| 347 DISALLOW_COPY_AND_ASSIGN(MockWebFrame); | 347 DISALLOW_COPY_AND_ASSIGN(MockWebFrame); |
| 348 }; | 348 }; |
| 349 | 349 |
| 350 } // namespace webkit_glue | 350 } // namespace webkit_glue |
| 351 | 351 |
| 352 #endif // WEBKIT_GLUE_MOCK_WEBFRAME_H_ | 352 #endif // WEBKIT_MOCKS_MOCK_WEBFRAME_H_ |
| OLD | NEW |